Gist Previewer

Preview gist html/js/css code.

Что такое Gist Previewer?

Gist Previewer - это расширение Chrome, разработанное David Orr, и его основная функция - "Preview gist html/js/css code.".

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

screenshot
screenshot

Скачать файл CRX расширения Gist Previewer

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

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

                        Renders Gist repos that contain HTML, JavaScript, or CSS files.

Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.                    

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

Название Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
Официальный URL https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
Описание Preview gist html/js/css code.
Размер файла 11.01 KB
Количество установок 92
Текущая Версия 2.0.0
Последнее Обновление 2017-04-03
Дата публикации 2017-04-02
Рейтинг 5.00/5 Всего 1 оценок
Разработчик David Orr
Тип оплаты free
URL страницы помощи https://github.com/davidyorr/gist-previewer
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Previewer",
    "description": "Preview gist html\/js\/css code.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/gistpreviewer.js"
            ],
            "css": [
                "css\/gistpreviewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2
}