Old Github UI

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

Co to jest Old Github UI?

Old Github UI to rozszerzenie Chrome opracowane przez Sreenivasan Ramesh, a jego główną funkcją jest „GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Old Github UI

Pobierz pliki rozszerzeń Old Github UI w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
Oficjalny URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Opis GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Rozmiar pliku 13.42 KB
Liczba instalacji 292
Aktualna Wersja 2.3
Ostatnia Aktualizacja 2020-06-29
Data Publikacji 2020-06-29
Ocena 3.83/5 Łącznie 6 Oceny
Deweloper Sreenivasan Ramesh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sreenivasanramesh/old-github-ui
Adres URL Strony Pomocy https://github.com/sreenivasanramesh/old-github-ui
Obsługiwane Języki 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"
        }
    ]
}