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
官方URL 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"
    }
}