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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย StipJey และคุณลักษณะหลักของมันคือ "For change width of the tab character in Pull/Merge Requests on GitHub/Gitlab/BitBucket"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TabSize tab-width extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}