Tab Size on GitHub

Make tab indented code more readable by forcing the tab size to 4 instead of 8

Tab Size on GitHubคืออะไร?

Tab Size on GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sindre Sorhus และคุณลักษณะหลักของมันคือ "Make tab indented code more readable by forcing the tab size to 4 instead of 8"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Size on GitHub

ดาวน์โหลดไฟล์ส่วนขยาย Tab Size on GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/

By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
คำอธิบาย Make tab indented code more readable by forcing the tab size to 4 instead of 8
ขนาดไฟล์ 5.09 KB
จำนวนการติดตั้ง 2,002
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2021-09-26
วันที่เผยแพร่ 2018-09-24
คะแนน 4.96/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา Sindre Sorhus
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sindresorhus/tab-size-on-github
URL หน้าช่วยเหลือ https://github.com/sindresorhus/tab-size-on-github/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Size on GitHub",
    "version": "1.2.0",
    "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github",
    "manifest_version": 2,
    "minimum_chrome_version": "36",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*\/*",
        "https:\/\/gist.github.com\/*\/*",
        "https:\/\/raw.githubusercontent.com\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*",
                "https:\/\/raw.githubusercontent.com\/*\/*"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}