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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |