Render Whitespace on GitHub

Renders spaces as · and tabs as → in all the code on GitHub.

Render Whitespace on GitHub là gì?

Render Whitespace on GitHub là một tiện ích mở rộng Chrome được phát triển bởi glebm, và tính năng chính của nó là "Renders spaces as · and tabs as → in all the code on GitHub.".

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

screenshot

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

Tải xuống các tệp mở rộng Render Whitespace 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

                        Are they tabs? Are they spaces? How many?
Never wonder again!

Add this extension to see the whitespace on GitHub.                    

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

Tên Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL Chính Thức https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Mô tả Renders spaces as · and tabs as → in all the code on GitHub.
Kích Thước Tệp 9.93 KB
Số Lần Cài Đặt 586
Phiên Bản Hiện Tại 1.3.12
Cập Nhật Lần Cuối 2018-08-25
Ngày Phát Hành 2018-08-25
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển glebm
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/glebm/render-whitespace-on-github
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Render Whitespace on GitHub",
    "version": "1.3.12",
    "author": "Gleb Mazovetskiy",
    "content_scripts": [
        {
            "js": [
                "RenderWhitespaceOnGithub.user.js"
            ],
            "matches": [
                "https:\/\/gist.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/glebm\/render-whitespace-on-github",
    "description": "Renders spaces as \u00b7 and tabs as \u2192 in all the code on GitHub.",
    "icons": {
        "128": "icon128.png"
    }
}