Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Что такое Inbox Checker for ProtonMail?
Inbox Checker for ProtonMail - это расширение Chrome, разработанное Jiri Tyr, и его основная функция - "Checks number of unread e-mails in the ProtonMail Inbox.".
Снимки экрана расширения
Скачать файл CRX расширения Inbox Checker for ProtonMail
Скачайте файлы расширений Inbox Checker for ProtonMail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Google Chrome extension checks the number of unread e-mails in the ProtonMail Inbox. The extension only works when the ProtonMail is open via URL https://protonmail.ch and is fully logged in. Usage: 1. Install the ProtonMail Checker extension 2. Click on the ProtonMail Checker icon 3. Log into your ProtonMail account
Основная информация о расширении
Название | Inbox Checker for ProtonMail |
ID | khohmflpainliicgcnenjnldnmffnaec |
Официальный URL | https://chromewebstore.google.com/detail/inbox-checker-for-protonm/khohmflpainliicgcnenjnldnmffnaec |
Описание | Checks number of unread e-mails in the ProtonMail Inbox. |
Размер файла | 136 KB |
Количество установок | 3,255 |
Текущая Версия | 3.0 |
Последнее Обновление | 2016-01-20 |
Дата публикации | 2016-01-20 |
Рейтинг | 2.75/5 Всего 32 оценок |
Разработчик | Jiri Tyr |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jtyr/protonmail-checker |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Inbox Checker for ProtonMail", "version": "3.0", "description": "Checks number of unread e-mails in the ProtonMail Inbox.", "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": "icons\/icon-48g.png", "default_title": "Inbox Checker for ProtonMail" }, "background": { "scripts": [ "scripts\/background.js" ] }, "options_page": "html\/options.html", "content_scripts": [ { "matches": [ "https:\/\/mail.protonmail.com\/*" ], "js": [ "scripts\/jquery-2.0.2.min.js", "scripts\/contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "scripts\/jquery-2.0.2.min.map", "icons\/icon-48.png" ], "permissions": [ "notifications", "tabs" ] } |