Render Whitespace on GitHub

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

Co to jest Render Whitespace on GitHub?

Render Whitespace on GitHub to rozszerzenie Chrome opracowane przez glebm, a jego główną funkcją jest „Renders spaces as · and tabs as → in all the code on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Render Whitespace on GitHub

Pobierz pliki rozszerzeń Render Whitespace on GitHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Add this extension to see the whitespace on GitHub.                    

Podstawowe informacje o rozszerzeniu

Nazwa Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
Oficjalny URL https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Opis Renders spaces as · and tabs as → in all the code on GitHub.
Rozmiar pliku 9.93 KB
Liczba instalacji 586
Aktualna Wersja 1.3.12
Ostatnia Aktualizacja 2018-08-25
Data Publikacji 2018-08-25
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper glebm
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/glebm/render-whitespace-on-github
Obsługiwane Języki 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"
    }
}