Tab Size on GitHub

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

Tab Size on GitHub là gì?

Tab Size on GitHub là một tiện ích mở rộng Chrome được phát triển bởi Sindre Sorhus, và tính năng chính của nó là "Make tab indented code more readable by forcing the tab size to 4 instead of 8".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Size on GitHub

Tải xuống các tệp mở rộng Tab Size on GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Size on GitHub Tab Size on GitHub
ID ofjbgncegkdemndciafljngjbdpfmbkn
URL Chính Thức https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn
Mô tả Make tab indented code more readable by forcing the tab size to 4 instead of 8
Kích Thước Tệp 5.09 KB
Số Lần Cài Đặt 2,002
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-09-26
Ngày Phát Hành 2018-09-24
Đánh Giá 4.96/5 Tổng số 23 Đánh Giá
Nhà Phát Triển Sindre Sorhus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sindresorhus/tab-size-on-github
URL Trang Trợ Giúp https://github.com/sindresorhus/tab-size-on-github/issues
URL Trang Chính Sách Bảo Mật https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}