Render Whitespace on GitHub

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

Qu'est-ce que Render Whitespace on GitHub ?

Render Whitespace on GitHub est une extension Chrome développée par glebm, et sa fonction principale est "Renders spaces as · and tabs as → in all the code on GitHub.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Render Whitespace on GitHub

Téléchargez les fichiers d'extension Render Whitespace on GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Add this extension to see the whitespace on GitHub.                    

Informations de Base sur l'Extension

Nom Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
URL Officiel https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Description Renders spaces as · and tabs as → in all the code on GitHub.
Taille du Fichier 9.93 KB
Nombre d'Installations 586
Version Actuelle 1.3.12
Dernière Mise à Jour 2018-08-25
Date de Publication 2018-08-25
Évaluation 4.00/5 Total 6 Évaluations
Développeur glebm
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/glebm/render-whitespace-on-github
Langues Prises en Charge 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"
    }
}