TabSize tab-width extension

For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket

O que é TabSize tab-width extension?

TabSize tab-width extension é uma extensão do Chrome desenvolvida por StipJey, e sua principal característica é "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão TabSize tab-width extension

Baixe arquivos de extensão TabSize tab-width extension 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

                        This extension will allow you to change the width of the tab character. Suitable for any sites, including GitLab, GitHub, BitBucket and others.                    

Informações Básicas da Extensão

Nome TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
URL Oficial https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Descrição For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Tamanho do Arquivo 10.62 KB
Contagem de Instalações 96
Versão Atual 1.0.0
Última Atualização 2019-10-03
Data de Publicação 2019-09-30
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor StipJey
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TabSize tab-width extension",
    "version": "1.0.0",
    "description": "For change width of the tab character in Pull\/Merge Requests on GitHub\/Gitlab\/BitBucket",
    "manifest_version": 2,
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html"
    }
}