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
Eメール [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"
        }
    ]
}