Show Invisibles on Github

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

Что такое Show Invisibles on Github?

Show Invisibles on Github - это расширение Chrome, разработанное 2biazdk, и его основная функция - "Spaces or tabs? Keep your coding style consistent by making whitespace characters visible in all Github repositories.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Show Invisibles on Github

Скачайте файлы расширений Show Invisibles on Github в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Show Invisibles on Github Show Invisibles on Github
ID lhibcpaagnchghjnedmpacbkeombaiil
Официальный URL https://chromewebstore.google.com/detail/show-invisibles-on-github/lhibcpaagnchghjnedmpacbkeombaiil
Описание Spaces or tabs? Keep your coding style consistent by making whitespace characters visible in all Github repositories.
Размер файла 22.24 KB
Количество установок 131
Текущая Версия 1.1.3
Последнее Обновление 2017-09-07
Дата публикации 2017-09-06
Рейтинг 5.00/5 Всего 5 оценок
Разработчик 2biazdk
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}