Github dark theme

This extension provides a simple dark theme for github.com

What is Github dark theme?

Github dark theme is a Chrome extension developed by benrlodge, and its main feature is "This extension provides a simple dark theme for github.com".

Extension Screenshots

screenshot

Download Github dark theme Extension CRX File

Download Github dark theme 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 extension provides a simple dark theme for github.com as an alternative to the default light theme.                    

Extension Basic Information

Name Github dark theme Github dark theme
ID llhodmljacflfmfdhpfkjlohlfgflhga
Official URL https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga
Description This extension provides a simple dark theme for github.com
File Size 80.86 KB
Installation Count 38
Current Version 1.0
Last Updated 2015-01-17
Publish Date 2015-01-17
Rating 2.00/5 Total 4 Ratings
Developer benrlodge
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github dark theme",
    "description": "This extension provides a simple dark theme for github.com",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/www.github.com\/*\/*"
            ],
            "css": [
                "darktheme.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}