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ファイルをダウンロード
Protonmail Avatars拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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 } } |