GitHub Custom Tab Size

Make tab indented code more readable by allowing you to set a custom tab size

O que é GitHub Custom Tab Size?

GitHub Custom Tab Size é uma extensão do Chrome desenvolvida por lukechilds, e sua principal característica é "Make tab indented code more readable by allowing you to set a custom tab size".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Custom Tab Size

Baixe arquivos de extensão GitHub Custom Tab Size 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

                        Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into.                    

Informações Básicas da Extensão

Nome GitHub Custom Tab Size GitHub Custom Tab Size
ID jcjfkmdkcaopkioccnpbhiemfcmpnghe
URL Oficial https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe
Descrição Make tab indented code more readable by allowing you to set a custom tab size
Tamanho do Arquivo 22.35 KB
Contagem de Instalações 557
Versão Atual 1.1.0
Última Atualização 2019-05-06
Data de Publicação 2019-05-06
Classificação 4.30/5 Total de 10 Avaliações
Desenvolvedor lukechilds
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lukechilds/github-custom-tab-size
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Custom Tab Size",
    "version": "1.1.0",
    "icons": {
        "256": "icon.png"
    },
    "description": "Make tab indented code more readable by allowing you to set a custom tab size",
    "homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ]
}