github-chat
Chat within GitHub
Что такое github-chat?
github-chat - это расширение Chrome, разработанное Indie Goodies, и его основная функция - "Chat within GitHub".
Снимки экрана расширения
Скачать файл CRX расширения github-chat
Скачайте файлы расширений github-chat в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- Chat within GitHub
Основная информация о расширении
Название | github-chat |
ID | fkkkglfjngejhnmjhhpahenlligojapa |
Официальный URL | https://chromewebstore.google.com/detail/github-chat/fkkkglfjngejhnmjhhpahenlligojapa |
Описание | Chat within GitHub |
Размер файла | 11.17 KB |
Количество установок | 21 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2017-07-28 |
Дата публикации | 2017-07-28 |
Разработчик | Indie Goodies |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://indiegoodies.com/chrome-extension |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-chat", "version": "1.0.0", "manifest_version": 2, "description": "Chat within GitHub", "icons": { "16": "images\/16.png", "128": "images\/128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/github.com\/*" ], "js": [ "scripts\/content.js", "scripts\/iframe.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ], "content_security_policy": "frame-src 'self' https:\/\/embed.tlk.io; default-src 'self' https:\/\/embed.tlk.io\/", "web_accessible_resources": [ "iframe.html", "scripts\/iframe.js" ] } |