Render Whitespace on GitHub

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

Что такое Render Whitespace on GitHub?

Render Whitespace on GitHub - это расширение Chrome, разработанное glebm, и его основная функция - "Renders spaces as · and tabs as → in all the code on GitHub.".

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

screenshot

Скачать файл CRX расширения Render Whitespace on GitHub

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

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

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

Add this extension to see the whitespace on GitHub.                    

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

Название Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
Официальный URL https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
Описание Renders spaces as · and tabs as → in all the code on GitHub.
Размер файла 9.93 KB
Количество установок 586
Текущая Версия 1.3.12
Последнее Обновление 2018-08-25
Дата публикации 2018-08-25
Рейтинг 4.00/5 Всего 6 оценок
Разработчик glebm
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/glebm/render-whitespace-on-github
Поддерживаемые языки 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"
    }
}