Giphy for GitHub

Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.…

Что такое Giphy for GitHub?

Giphy for GitHub - это расширение Chrome, разработанное Steven Lundy, и его основная функция - "Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.…".

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

screenshot
screenshot
screenshot

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

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

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

                        Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub. After you have installed the extension there will be an extra button in your GitHub toolbar to insert GIFs.

If you select a word or phrase and click the button, it will replace the text with a giphy on that theme. If you have nothing selected, it will insert a random giphy. If you select the ID for a specific giphy, it will insert it.                    

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

Название Giphy for GitHub Giphy for GitHub
ID njpbcacdkcomjpddllidghnpjjdjbfoh
Официальный URL https://chrome.google.com/webstore/detail/giphy-for-github/njpbcacdkcomjpddllidghnpjjdjbfoh
Описание Giphy for GitHub gives you the ability to easily add GIFs from giphy into pull requests, issues, and other comments on GitHub.…
Размер файла 59.36 KB
Количество установок 578
Текущая Версия 1.0.4
Последнее Обновление 2019-08-21
Дата публикации 2019-08-21
Рейтинг 3.17/5 Всего 6 оценок
Разработчик Steven Lundy
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Giphy for GitHub",
    "description": "",
    "version": "1.0.4",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "244": "icons\/icon244.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}