GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

What is GitHub Color Changer?

GitHub Color Changer is a Chrome extension developed by https://timothycarambat.com, and its main feature is "This extension changes the GitHub Icon Color Randomly".

Download GitHub Color Changer Extension CRX File

Download GitHub Color Changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
Official URL https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
Description This extension changes the GitHub Icon Color Randomly
File Size 49.82 KB
Installation Count 44
Current Version 0.0.1
Last Updated 2017-04-02
Publish Date 2017-04-01
Developer https://timothycarambat.com
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}