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
官方網址 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"
        }
    ]
}