darkhub

a crude google chrome extension to darken github.com

What is darkhub?

darkhub is a Chrome extension developed by xero, and its main feature is "a crude google chrome extension to darken github.com".

Extension Screenshots

screenshot
screenshot

Download darkhub Extension CRX File

Download darkhub 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

                        invert the colors of github.com

follow the project at: https://github.com/xero/darkhub

you can also install this theme with stylish: https://userstyles.org/styles/116810/darkhub-github-com

find more of my userstyles here: https://git.io/stylez                    

Extension Basic Information

Name darkhub darkhub
ID dkjhglblnbkbllapljjhjjggnoijejdj
Official URL https://chrome.google.com/webstore/detail/darkhub/dkjhglblnbkbllapljjhjjggnoijejdj
Description a crude google chrome extension to darken github.com
File Size 133 KB
Installation Count 125
Current Version 1.1.1
Last Updated 2017-03-12
Publish Date 2017-03-12
Rating 5.00/5 Total 1 Ratings
Developer xero
Payment Type free
Extension Website http://git.io/darkhub
Help Page URL https://github.com/xero/darkhub/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "darkhub",
    "description": "a crude google chrome extension to darken github.com",
    "version": "1.1.1",
    "author": "xero harrison",
    "permissions": [
        "tabs",
        "",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "darkhub-16.png",
        "48": "darkhub-48.png",
        "128": "darkhub-128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/start.js"
            ],
            "matches": [
                "*:\/\/*.github.com\/*",
                "*:\/\/*.githubusercontent.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "js\/start.js",
        "css\/darkhub.min.css"
    ]
}