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"
    }
}