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
官方網址 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"
    }
}