TabSize tab-width extension

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

Apa itu TabSize tab-width extension?

TabSize tab-width extension adalah ekstensi Chrome yang dikembangkan oleh StipJey, dan fitur utamanya adalah "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi TabSize tab-width extension

Unduh file ekstensi TabSize tab-width extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama TabSize tab-width extension TabSize tab-width extension
ID inljipofhnbnafffhllppdcbjapaapnl
URL Resmi https://chromewebstore.google.com/detail/tabsize-tab-width-extensi/inljipofhnbnafffhllppdcbjapaapnl
Deskripsi For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket
Ukuran File 10.62 KB
Jumlah Instalasi 96
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2019-10-03
Tanggal Publikasi 2019-09-30
Penilaian 5.00/5 Total 1 Penilaian
Pengembang StipJey
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}