TabSize tab-width extension

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

Cos'è TabSize tab-width extension?

TabSize tab-width extension è un'estensione di Chrome sviluppata da StipJey, e la sua funzione principale è "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TabSize tab-width extension

Scarica i file di estensione TabSize tab-width extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
URL Ufficiale https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Descrizione For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Dimensione del File 10.62 KB
Conteggio Installazioni 96
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-10-03
Data di Pubblicazione 2019-09-30
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore StipJey
Tipo di Pagamento free
Lingue Supportate 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"
    }
}