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?

Old Github UI - это расширение Chrome, разработанное Sreenivasan Ramesh, и его основная функция - "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Old Github UI

Скачайте файлы расширений Old Github UI в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
Официальный URL https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Описание GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Размер файла 13.42 KB
Количество установок 292
Текущая Версия 2.3
Последнее Обновление 2020-06-29
Дата публикации 2020-06-29
Рейтинг 3.83/5 Всего 6 оценок
Разработчик Sreenivasan Ramesh
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/sreenivasanramesh/old-github-ui
URL страницы помощи https://github.com/sreenivasanramesh/old-github-ui
Поддерживаемые языки 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"
        }
    ]
}