Gistify

This extension searches for gist URLs in a page and replaces them with embedded gists.

Что такое Gistify?

Gistify - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension searches for gist URLs in a page and replaces them with embedded gists.".

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

screenshot

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

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

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

                        A chrome extension that searches for Gist URL's on the page and replaces them with embedded gists. Inspired by poorly formatted code in the comments on the blondiebytes YouTube channel (http://bit.ly/1NbxNzV).

Contributors: George Witteman, Kathryn Hodge                    

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

Название Gistify Gistify
ID bjapmncmmhnhbfkfaopdajhmhccfhonm
Официальный URL https://chromewebstore.google.com/detail/gistify/bjapmncmmhnhbfkfaopdajhmhccfhonm
Описание This extension searches for gist URLs in a page and replaces them with embedded gists.
Размер файла 40.31 KB
Количество установок 17
Текущая Версия 1.0
Последнее Обновление 2016-02-26
Дата публикации 2016-02-26
Рейтинг 4.83/5 Всего 6 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения http://bit.ly/1NbxNzV
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gistify",
    "description": "This extension searches for gist URLs in a page and replaces them with embedded gists.",
    "version": "1.0",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Find Gists!"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.github.com\/"
    ]
}