GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

Vad är GitHub Color Changer?

GitHub Color Changer är en Chrome-tillägg utvecklad av https://timothycarambat.com, och dess huvudfunktion är "This extension changes the GitHub Icon Color Randomly".

Ladda ner GitHub Color Changer-förlängningens CRX-fil

Ladda ner GitHub Color Changer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
Officiell webbadress https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Beskrivning This extension changes the GitHub Icon Color Randomly
Filstorlek 49.82 KB
Antal Installationer 44
Aktuell Version 0.0.1
Senast Uppdaterad 2017-04-02
Publiceringsdatum 2017-04-01
Utvecklare https://timothycarambat.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}