Inbox Checker for ProtonMail
Checks number of unread e-mails in the ProtonMail Inbox.
Inbox Checker for ProtonMail란 무엇입니까?
Inbox Checker for ProtonMail은(는) Jiri Tyr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks number of unread e-mails in the ProtonMail Inbox."입니다.
확장 프로그램 스크린샷
Inbox Checker for ProtonMail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |