Old Github UI

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

O que é Old Github UI?

Old Github UI é uma extensão do Chrome desenvolvida por Sreenivasan Ramesh, e sua principal característica é "GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Old Github UI

Baixe arquivos de extensão Old Github UI no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Old Github UI Old Github UI
ID dhifdlfedboijpanpblghhhakpnncadb
URL Oficial https://chromewebstore.google.com/detail/old-github-ui/dhifdlfedboijpanpblghhhakpnncadb
Descrição GitHub changed their UI on 2020-06-23, this extension brings a few items back to their classic look.
Tamanho do Arquivo 13.42 KB
Contagem de Instalações 292
Versão Atual 2.3
Última Atualização 2020-06-29
Data de Publicação 2020-06-29
Classificação 3.83/5 Total de 6 Avaliações
Desenvolvedor Sreenivasan Ramesh
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/sreenivasanramesh/old-github-ui
URL da Página de Ajuda https://github.com/sreenivasanramesh/old-github-ui
Idiomas Suportados 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"
        }
    ]
}