Old Github UI

GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.

What is Old Github UI?

Old Github UI is a Chrome extension developed by Sreenivasan Ramesh, and its main feature is "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Extension Screenshots

screenshot
screenshot

Download Old Github UI Extension CRX File

Download Old Github UI 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 back the old Github User Interface. This extension moves the new sidebar back to the top, and makes the layout similar to the old user interface.                    

Extension Basic Information

Name Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
Official URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Description GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
File Size 13.42 KB
Installation Count 292
Current Version 2.3
Last Updated 2020-06-29
Publish Date 2020-06-29
Rating 3.83/5 Total 6 Ratings
Developer Sreenivasan Ramesh
Email [email protected]
Payment Type free
Extension Website https://github.com/sreenivasanramesh/old-github-ui
Help Page URL https://github.com/sreenivasanramesh/old-github-ui
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Github UI",
    "version": "2.3",
    "manifest_version": 2,
    "description": "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.gihub.com\/*"
            ],
            "css": [
                "headers.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/github.com\/*\/*\/settings*",
                "https:\/\/github.com\/*\/*\/community*"
            ],
            "css": [
                "repo-content.css"
            ],
            "run_at": "document_start"
        }
    ]
}