Old Github UI

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

什么是Old Github UI?

Old Github UI是由Sreenivasan Ramesh开发的Chrome扩展程序,该扩展的主要功能是“GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.”。

扩展截图

screenshot
screenshot

下载Old Github UI扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
官方URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
简介 GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
文件大小 13.42 KB
安装次数 292
当前版本 2.3
更新时间 2020-06-29
上架时间 2020-06-29
评分 3.83/5 共6次评分
开发者 Sreenivasan Ramesh
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sreenivasanramesh/old-github-ui
帮助页面URL https://github.com/sreenivasanramesh/old-github-ui
支持的语言 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"
        }
    ]
}