GifHub

Insert GIFs from Giphy.com into GitHub comments

Что такое GifHub?

GifHub - это расширение Chrome, разработанное Andrew Levine, и его основная функция - "Insert GIFs from Giphy.com into GitHub comments".

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

screenshot

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

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

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

                        GitHub is awesome. GIFs are awesome.

1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix.
1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites
1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS                    

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

Название GifHub GifHub
ID lponagpckglibniamicamklhfkoebpeb
Официальный URL https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb
Описание Insert GIFs from Giphy.com into GitHub comments
Размер файла 25.84 KB
Количество установок 452
Текущая Версия 1.0.8
Последнее Обновление 2016-05-24
Дата публикации 2016-05-24
Рейтинг 3.29/5 Всего 7 оценок
Разработчик Andrew Levine
Тип оплаты free
Официальный сайт расширения https://github.com/DrewML/GifHub
URL страницы помощи https://github.com/DrewML/GifHub/blob/master/README.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GifHub",
    "version": "1.0.8",
    "description": "Insert GIFs from Giphy.com into GitHub comments",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "bundle.js",
        "extension.css"
    ],
    "permissions": [
        "https:\/\/api.giphy.com\/v1\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "peristent": false
    }
}