Helper for GitHub notifications in Gmail
Add links to GitHub threads and shortcuts to your Gmail interface.
Что такое Helper for GitHub notifications in Gmail?
Helper for GitHub notifications in Gmail - это расширение Chrome, разработанное https://muan.co, и его основная функция - "Add links to GitHub threads and shortcuts to your Gmail interface.".
Снимки экрана расширения
Скачать файл CRX расширения Helper for GitHub notifications in Gmail
Скачайте файлы расширений Helper for GitHub notifications in Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Open your GitHub notifications using shift + g, or a "Visit Thread on GitHub" button in mail view. Or if you have keyboard shortcut enabled in Gmail, you can a select a GitHub notification email thread, and use ctrl + return in the list view and/or anywhere (requires an organization named label) to visit the GitHub page.
Основная информация о расширении
Название | Helper for GitHub notifications in Gmail |
ID | gmhijkhbpihfmkmhmcfebmlkaekgmaje |
Официальный URL | https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje |
Описание | Add links to GitHub threads and shortcuts to your Gmail interface. |
Размер файла | 19.64 KB |
Количество установок | 432 |
Текущая Версия | 0.8.3 |
Последнее Обновление | 2021-06-01 |
Дата публикации | 2018-05-11 |
Рейтинг | 5.00/5 Всего 7 оценок |
Разработчик | https://muan.co |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/muan/github-gmail |
URL страницы помощи | https://github.com/muan/github-gmail/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Helper for GitHub notifications in Gmail", "short_name": "helpergithubgmail", "version": "0.8.3", "manifest_version": 2, "description": "Add links to GitHub threads and shortcuts to your Gmail interface.", "homepage_url": "http:\/\/github.com\/muan\/github-gmail", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "options_page": "src\/options\/index.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |