Old Github UI

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

Was ist Old Github UI?

Old Github UI ist eine Chrome-Erweiterung, die von Sreenivasan Ramesh entwickelt wurde, und ihr Hauptmerkmal ist "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Erweiterungsscreenshots

screenshot
screenshot

Old Github UI-Erweiterungs-CRX-Datei herunterladen

Laden Sie Old Github UI-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
Offizielle URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Beschreibung GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Dateigröße 13.42 KB
Installationsanzahl 292
Aktuelle Version 2.3
Letztes Update 2020-06-29
Veröffentlichungsdatum 2020-06-29
Bewertung 3.83/5 Insgesamt 6 Bewertungen
Entwickler Sreenivasan Ramesh
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sreenivasanramesh/old-github-ui
Hilfeseite URL https://github.com/sreenivasanramesh/old-github-ui
Unterstützte Sprachen 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"
        }
    ]
}