GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

GitHub Dashboard Avatars란 무엇입니까?

GitHub Dashboard Avatars은(는) ryaneof에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display your Github dashboard avatars appropriately."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub Dashboard Avatars 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A simple Chrome Extension which display your GitHub dashboard avatars appropriately.

Display Options: All Avatars, No Avatars.                    

확장 프로그램 기본 정보

이름 GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
공식 URL https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
설명 Display your Github dashboard avatars appropriately.
파일 크기 74.46 KB
설치 횟수 49
현재 버전 0.1.3
최근 업데이트 2016-07-29
출시 날짜 2016-07-29
개발자 ryaneof
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ryaneof/github-dashboard-avatars
도움말 페이지 URL https://github.com/ryaneof/github-dashboard-avatars
개인정보 보호 정책 페이지 URL https://ryan.im
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Dashboard Avatars",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "Display your Github dashboard avatars appropriately.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "bower_components\/object.observe\/dist\/object-observe.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "https:\/\/*.github.com\/*"
    ]
}