TabSize tab-width extension

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

What is TabSize tab-width extension?

TabSize tab-width extension is a Chrome extension developed by StipJey, and its main feature is "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Extension Screenshots

screenshot
screenshot

Download TabSize tab-width extension Extension CRX File

Download TabSize tab-width extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
Official URL 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
File Size 10.62 KB
Installation Count 96
Current Version 1.0.0
Last Updated 2019-10-03
Publish Date 2019-09-30
Rating 5.00/5 Total 1 Ratings
Developer StipJey
Payment Type free
Supported Languages 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"
    }
}