TabSize tab-width extension

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

Qu'est-ce que TabSize tab-width extension ?

TabSize tab-width extension est une extension Chrome développée par StipJey, et sa fonction principale est "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension TabSize tab-width extension

Téléchargez les fichiers d'extension TabSize tab-width extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
URL Officiel https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Description For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Taille du Fichier 10.62 KB
Nombre d'Installations 96
Version Actuelle 1.0.0
Dernière Mise à Jour 2019-10-03
Date de Publication 2019-09-30
Évaluation 5.00/5 Total 1 Évaluations
Développeur StipJey
Type de Paiement free
Langues Prises en Charge 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"
    }
}