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 |
电子邮箱 | [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 } } |