gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
Что такое gitphy?
gitphy - это расширение Chrome, разработанное https://kevinformatics.com, и его основная функция - "Put gifs in your Github issues and pull requests without leaving the textarea".
Снимки экрана расширения
Скачать файл CRX расширения gitphy
Скачайте файлы расширений gitphy в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
Основная информация о расширении
Название | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
Официальный URL | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Описание | Put gifs in your Github issues and pull requests without leaving the textarea |
Размер файла | 86.94 KB |
Количество установок | 38 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2020-10-15 |
Дата публикации | 2020-07-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://kevinformatics.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://kevinformatics.com/gitphy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |