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 擴展基本資訊
| 名稱 | |
| ID | oeafplhigdpghchmklofmblpkhonkhon |
| 官方網址 | 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
}
} | |