Make GitHub Great Again

Extension to make GitHub great again!

What is Make GitHub Great Again?

Make GitHub Great Again is a Chrome extension developed by https://dennissnijder.github.io/MakeGithubGreatAgain, and its main feature is "Extension to make GitHub great again!".

Extension Screenshots

screenshot

Download Make GitHub Great Again Extension CRX File

Download Make GitHub Great Again 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

                        Get your old Github back. Remove the new dark topbar.
https://github.com/DennisSnijder/MakeGithubGreatAgain                    

Extension Basic Information

Name Make GitHub Great Again Make GitHub Great Again
ID gpejlkhibgecggplgogpbgbdpnhogmhk
Official URL https://chromewebstore.google.com/detail/make-github-great-again/gpejlkhibgecggplgogpbgbdpnhogmhk
Description Extension to make GitHub great again!
File Size 528 KB
Installation Count 681
Current Version 2.0.1
Last Updated 2017-08-29
Publish Date 2017-08-29
Rating 4.71/5 Total 38 Ratings
Developer https://dennissnijder.github.io/MakeGithubGreatAgain
Email [email protected]
Payment Type free
Extension Website https://github.com/DennisSnijder/MakeGithubGreatAgain
Help Page URL https://github.com/DennisSnijder/MakeGithubGreatAgain
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make GitHub Great Again",
    "version": "2.0.1",
    "description": "Extension to make GitHub great again!",
    "minimum_chrome_version": "26",
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "page_action": {
        "default_title": "Toggle light\/dark header"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "src\/content_script.js"
            ],
            "css": [
                "src\/header.css",
                "src\/links.css",
                "src\/save-the-colors.css",
                "src\/fonts.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    }
}