TabSize tab-width extension

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

什么是TabSize tab-width extension?

TabSize tab-width extension是由StipJey开发的Chrome扩展程序,该扩展的主要功能是“For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket”。

扩展截图

screenshot
screenshot

下载TabSize tab-width extension扩展crx文件

下载TabSize tab-width extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
官方URL https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
简介 For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
文件大小 10.62 KB
安装次数 96
当前版本 1.0.0
更新时间 2019-10-03
上架时间 2019-09-30
评分 5.00/5 共1次评分
开发者 StipJey
付费类型 free
支持的语言 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"
    }
}