Render Whitespace on GitHub

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

什麼是Render Whitespace on GitHub?

Render Whitespace on GitHub是由glebm開發的Chrome擴展程式,該擴展的主要功能是“Renders spaces as · and tabs as → in all the code on GitHub.”。

擴展截圖

screenshot

下載Render Whitespace on GitHub擴展crx文件

下載Render Whitespace on GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

Add this extension to see the whitespace on GitHub.                    

擴展基本資訊

名稱 Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
官方網址 https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
簡介 Renders spaces as · and tabs as → in all the code on GitHub.
檔案大小 9.93 KB
安裝次數 586
目前版本 1.3.12
更新時間 2018-08-25
上架時間 2018-08-25
評分 4.00/5 共 6 次評分
開發者 glebm
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/glebm/render-whitespace-on-github
支援的語言 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"
    }
}