GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

Qu'est-ce que GitHub Color Changer ?

GitHub Color Changer est une extension Chrome développée par https://timothycarambat.com, et sa fonction principale est "This extension changes the GitHub Icon Color Randomly".

Télécharger le fichier CRX de l'extension GitHub Color Changer

Téléchargez les fichiers d'extension GitHub Color Changer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
URL Officiel https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Description This extension changes the GitHub Icon Color Randomly
Taille du Fichier 49.82 KB
Nombre d'Installations 44
Version Actuelle 0.0.1
Dernière Mise à Jour 2017-04-02
Date de Publication 2017-04-01
Développeur https://timothycarambat.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}