TabSize tab-width extension

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

Wat is TabSize tab-width extension?

TabSize tab-width extension is een Chrome-extensie ontwikkeld door StipJey, en de belangrijkste functie is "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie TabSize tab-width extension

Download TabSize tab-width extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
Officiële URL https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Beschrijving For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Bestandsgrootte 10.62 KB
Aantal Installaties 96
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-10-03
Publicatiedatum 2019-09-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar StipJey
Betalingswijze free
Ondersteunde Talen 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"
    }
}