Show Invisibles on Github

Spaces or tabs? Keep your coding style consistent by making whitespace characters visible in all Github repositories.

Co to jest Show Invisibles on Github?

Show Invisibles on Github to rozszerzenie Chrome opracowane przez 2biazdk, a jego główną funkcją jest „Spaces or tabs? Keep your coding style consistent by making whitespace characters visible in all Github repositories.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Show Invisibles on Github

Pobierz pliki rozszerzeń Show Invisibles 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

                        Add this plugin to your browser and make whitespace visible in every piece of code that you view in Github. This will make it easy for you to keep your code consistent and give you full control over the code in your repository.                    

Podstawowe informacje o rozszerzeniu

Nazwa Show Invisibles on Github Show Invisibles on Github
ID lhibcpaagnchghjnedmpacbkeombaiil
Oficjalny URL https://chromewebstore.google.com/detail/show-invisibles-on-github/lhibcpaagnchghjnedmpacbkeombaiil
Opis Spaces or tabs? Keep your coding style consistent by making whitespace characters visible in all Github repositories.
Rozmiar pliku 22.24 KB
Liczba instalacji 131
Aktualna Wersja 1.1.3
Ostatnia Aktualizacja 2017-09-07
Data Publikacji 2017-09-06
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper 2biazdk
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en,da
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.3",
    "default_locale": "en",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appNameShort__",
    "description": "__MSG_appDesc__",
    "author": "2biazdk",
    "offline_enabled": true,
    "minimum_chrome_version": "53",
    "icons": {
        "16": "img\/[email protected]",
        "19": "img\/[email protected]",
        "32": "img\/[email protected]",
        "38": "img\/[email protected]",
        "48": "img\/[email protected]",
        "128": "img\/[email protected]"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/[email protected]",
            "19": "img\/[email protected]",
            "32": "img\/[email protected]",
            "38": "img\/[email protected]",
            "48": "img\/[email protected]",
            "128": "img\/[email protected]"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styling.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "styling.css"
    ]
}