Protonmail Avatars

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

Protonmail Avatars là gì?

Protonmail Avatars là một tiện ích mở rộng Chrome được phát triển bởi https://christianoliff.com, và tính năng chính của nó là "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Protonmail Avatars

Tải xuống các tệp mở rộng Protonmail Avatars dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Protonmail Avatars Protonmail Avatars
ID oeafplhigdpghchmklofmblpkhonkhon
URL Chính Thức https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon
Mô tả Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Kích Thước Tệp 168 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 3.9.22
Cập Nhật Lần Cuối 2023-09-22
Ngày Phát Hành 2020-06-18
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://christianoliff.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/coliff/sender-brand-icon-avatars-for-email
Ngôn Ngữ Được Hỗ Trợ 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
    }
}