GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

Wat is GitHub Color Changer?

GitHub Color Changer is een Chrome-extensie ontwikkeld door https://timothycarambat.com, en de belangrijkste functie is "This extension changes the GitHub Icon Color Randomly".

Download het CRX-bestand van de extensie GitHub Color Changer

Download GitHub Color Changer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
Officiële URL https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Beschrijving This extension changes the GitHub Icon Color Randomly
Bestandsgrootte 49.82 KB
Aantal Installaties 44
Huidige Versie 0.0.1
Laatst Bijgewerkt 2017-04-02
Publicatiedatum 2017-04-01
Ontwikkelaar https://timothycarambat.com
E-mail rambat1010@gmail.com
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}