Protonmail Avatars
Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Protonmail Avatars란 무엇입니까?
Protonmail Avatars은(는) https://christianoliff.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface"입니다.
확장 프로그램 스크린샷
Protonmail Avatars 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays Avatars for Sender in the ProtonMail UI. Works with both classic and beta mail interface. - Super-fast with no JavaScript or external resources - All images are hi-res SVG with official brand colors - Free and Open Source
확장 프로그램 기본 정보
이름 | Protonmail Avatars |
ID | oeafplhigdpghchmklofmblpkhonkhon |
공식 URL | https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon |
설명 | Unofficial plugin. Displays avatar icons for senders in the Protonmail interface |
파일 크기 | 168 KB |
설치 횟수 | 97 |
현재 버전 | 3.9.22 |
최근 업데이트 | 2023-09-22 |
출시 날짜 | 2020-06-18 |
평점 | 3.00/5 총 4 개의 평점 |
개발자 | https://christianoliff.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/coliff/sender-brand-icon-avatars-for-email |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Protonmail Avatars", "version": "3.9.22", "description": "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface", "homepage_url": "https:\/\/mail.proton.me\/", "author": "C.Oliff", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon48.png", "default_name": "Protonmail Avatars" }, "content_scripts": [ { "css": [ "css\/extra.css", "css\/fa.css" ], "matches": [ "https:\/\/mail.proton.me\/*" ] } ], "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "activeTab", "https:\/\/mail.proton.me\/*" ], "optional_permissions": [ "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |