GitHub Color Changer

This extension changes the GitHub Icon Color Randomly

什么是GitHub Color Changer?

GitHub Color Changer是由https://timothycarambat.com开发的Chrome扩展程序,该扩展的主要功能是“This extension changes the GitHub Icon Color Randomly”。

下载GitHub Color Changer扩展crx文件

下载GitHub Color Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 GitHub Color Changer GitHub Color Changer
ID hldkfdccdlbahaaipmopnajgpggfdmkb
官方URL https://chromewebstore.google.com/detail/github-color-changer/hldkfdccdlbahaaipmopnajgpggfdmkb
简介 This extension changes the GitHub Icon Color Randomly
文件大小 49.82 KB
安装次数 44
当前版本 0.0.1
更新时间 2017-04-02
上架时间 2017-04-01
开发者 https://timothycarambat.com
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}