Render Whitespace on GitHub

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

Cos'è Render Whitespace on GitHub?

Render Whitespace on GitHub è un'estensione di Chrome sviluppata da glebm, e la sua funzione principale è "Renders spaces as · and tabs as → in all the code on GitHub.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Render Whitespace on GitHub

Scarica i file di estensione Render Whitespace on GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Add this extension to see the whitespace on GitHub.                    

Informazioni di Base sull'Estensione

Nome Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL Ufficiale https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Descrizione Renders spaces as · and tabs as → in all the code on GitHub.
Dimensione del File 9.93 KB
Conteggio Installazioni 586
Versione Corrente 1.3.12
Ultimo Aggiornamento 2018-08-25
Data di Pubblicazione 2018-08-25
Valutazione 4.00/5 Totale 6 Valutazioni
Sviluppatore glebm
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/glebm/render-whitespace-on-github
Lingue Supportate 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"
    }
}