Render Whitespace on GitHub

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

What is Render Whitespace on GitHub?

Render Whitespace on GitHub is a Chrome extension developed by glebm, and its main feature is "Renders spaces as · and tabs as → in all the code on GitHub.".

Extension Screenshots

screenshot

Download Render Whitespace on GitHub Extension CRX File

Download Render Whitespace on GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Add this extension to see the whitespace on GitHub.                    

Extension Basic Information

Name Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
Official URL https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Description Renders spaces as · and tabs as → in all the code on GitHub.
File Size 9.93 KB
Installation Count 586
Current Version 1.3.12
Last Updated 2018-08-25
Publish Date 2018-08-25
Rating 4.00/5 Total 6 Ratings
Developer glebm
Email [email protected]
Payment Type free
Extension Website https://github.com/glebm/render-whitespace-on-github
Supported Languages 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"
    }
}