TabSize tab-width extension

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

Co je TabSize tab-width extension?

TabSize tab-width extension je rozšíření Chrome vyvinuté StipJey, a jeho hlavní funkcí je „For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření TabSize tab-width extension

Stáhněte si soubory rozšíření TabSize tab-width extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
Oficiální URL https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Popis For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Velikost souboru 10.62 KB
Počet instalací 96
Aktuální Verze 1.0.0
Poslední Aktualizace 2019-10-03
Datum Vydání 2019-09-30
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář StipJey
Typ Platby free
Podporované Jazyky 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"
    }
}