GistRun

Bring your Gists to life with GistRun!

Что такое GistRun?

GistRun - это расширение Chrome, разработанное https://gist.run, и его основная функция - "Bring your Gists to life with GistRun!".

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

screenshot
screenshot
screenshot

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

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

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

                        The GistRun Chrome extension adds "Run" buttons to GitHub Gist pages, making it easy to open Gists in the GistRun editor.

The extension adds "Run" buttons to the Gists list page, the Gist page and to the Gist "Revisions" tab, making it easy to run a Gist at a specific revision/SHA.                    

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

Название GistRun GistRun
ID cmikephimncflideoipflcfacmadghno
Официальный URL https://chromewebstore.google.com/detail/gistrun/cmikephimncflideoipflcfacmadghno
Описание Bring your Gists to life with GistRun!
Размер файла 12.06 KB
Количество установок 35
Текущая Версия 1.1
Последнее Обновление 2016-02-18
Дата публикации 2016-02-18
Рейтинг 4.00/5 Всего 3 оценок
Разработчик https://gist.run
Тип оплаты free
Официальный сайт расширения https://gist.run
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GistRun",
    "description": "Bring your Gists to life with GistRun!",
    "author": "Jeremy Danyow",
    "icons": {
        "128": "icon128.png"
    },
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ]
}