Protonmail Avatars

Unofficial plugin. Displays avatar icons for senders in the Protonmail interface

Protonmail Avatarsคืออะไร?

Protonmail Avatars เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://christianoliff.com และคุณลักษณะหลักของมันคือ "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Protonmail Avatars

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
    }
}