GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

Was ist GitHub Color Changer?

GitHub Color Changer ist eine Chrome-Erweiterung, die von https://timothycarambat.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension changes the GitHub Icon Color Randomly".

GitHub Color Changer-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Color Changer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
Offizielle URL https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Beschreibung This extension changes the GitHub Icon Color Randomly
Dateigröße 49.82 KB
Installationsanzahl 44
Aktuelle Version 0.0.1
Letztes Update 2017-04-02
Veröffentlichungsdatum 2017-04-01
Entwickler https://timothycarambat.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}