GitHub Dashboard Avatars

Display your Github dashboard avatars appropriately.

Co to jest GitHub Dashboard Avatars?

GitHub Dashboard Avatars to rozszerzenie Chrome opracowane przez ryaneof, a jego główną funkcją jest „Display your Github dashboard avatars appropriately.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GitHub Dashboard Avatars

Pobierz pliki rozszerzeń GitHub Dashboard Avatars w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Display Options: All Avatars, No Avatars.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Dashboard Avatars GitHub Dashboard Avatars
ID gmbhmmbplafgcmeikgohjpanekbcmbhp
Oficjalny URL https://chrome.google.com/webstore/detail/gmbhmmbplafgcmeikgohjpanekbcmbhp
Opis Display your Github dashboard avatars appropriately.
Rozmiar pliku 74.46 KB
Liczba instalacji 49
Aktualna Wersja 0.1.3
Ostatnia Aktualizacja 2016-07-29
Data Publikacji 2016-07-29
Deweloper ryaneof
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ryaneof/github-dashboard-avatars
Adres URL Strony Pomocy https://github.com/ryaneof/github-dashboard-avatars
Adres URL Strony Polityki Prywatności https://ryan.im
Obsługiwane Języki 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\/*"
    ]
}