GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

Co je GitHub Color Changer?

GitHub Color Changer je rozšíření Chrome vyvinuté https://timothycarambat.com, a jeho hlavní funkcí je „This extension changes the GitHub Icon Color Randomly“.

Stáhnout soubor CRX rozšíření GitHub Color Changer

Stáhněte si soubory rozšíření GitHub Color Changer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This simple extension changes the current styling of the github header Octocat. It will change the color from white to any color in the rainbow, which looks great against the black header bar that is not very lively. A small, but warm change for the career developer.                    

Základní Informace o Rozšíření

Název GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
Oficiální URL https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Popis This extension changes the GitHub Icon Color Randomly
Velikost souboru 49.82 KB
Počet instalací 44
Aktuální Verze 0.0.1
Poslední Aktualizace 2017-04-02
Datum Vydání 2017-04-01
Vývojář https://timothycarambat.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Color Changer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension changes the GitHub Icon Color Randomly",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "tabs",
        "*:\/\/github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/color_change.js"
            ]
        }
    ]
}