Old Github UI

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

Apa itu Old Github UI?

Old Github UI adalah ekstensi Chrome yang dikembangkan oleh Sreenivasan Ramesh, dan fitur utamanya adalah "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Old Github UI

Unduh file ekstensi Old Github UI dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
URL Resmi https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Deskripsi GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Ukuran File 13.42 KB
Jumlah Instalasi 292
Versi Saat Ini 2.3
Terakhir Diperbarui 2020-06-29
Tanggal Publikasi 2020-06-29
Penilaian 3.83/5 Total 6 Penilaian
Pengembang Sreenivasan Ramesh
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/sreenivasanramesh/old-github-ui
URL Halaman Bantuan https://github.com/sreenivasanramesh/old-github-ui
Bahasa yang Didukung 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"
        }
    ]
}