Old Github UI

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

Cos'è Old Github UI?

Old Github UI è un'estensione di Chrome sviluppata da Sreenivasan Ramesh, e la sua funzione principale è "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Old Github UI

Scarica i file di estensione Old Github UI in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
URL Ufficiale https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Descrizione GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Dimensione del File 13.42 KB
Conteggio Installazioni 292
Versione Corrente 2.3
Ultimo Aggiornamento 2020-06-29
Data di Pubblicazione 2020-06-29
Valutazione 3.83/5 Totale 6 Valutazioni
Sviluppatore Sreenivasan Ramesh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sreenivasanramesh/old-github-ui
URL della Pagina di Aiuto https://github.com/sreenivasanramesh/old-github-ui
Lingue Supportate 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"
        }
    ]
}