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 là gì?

Old Github UI là một tiện ích mở rộng Chrome được phát triển bởi Sreenivasan Ramesh, và tính năng chính của nó là "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Old Github UI

Tải xuống các tệp mở rộng Old Github UI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
URL Chính Thức https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Mô tả GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Kích Thước Tệp 13.42 KB
Số Lần Cài Đặt 292
Phiên Bản Hiện Tại 2.3
Cập Nhật Lần Cuối 2020-06-29
Ngày Phát Hành 2020-06-29
Đánh Giá 3.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Sreenivasan Ramesh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sreenivasanramesh/old-github-ui
URL Trang Trợ Giúp https://github.com/sreenivasanramesh/old-github-ui
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}