Protonmail Avatars

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

What is Protonmail Avatars?

Protonmail Avatars is a Chrome extension developed by https://christianoliff.com, and its main feature is "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".

Extension Screenshots

screenshot

Download Protonmail Avatars Extension CRX File

Download Protonmail Avatars extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Protonmail Avatars Protonmail Avatars
ID oeafplhigdpghchmklofmblpkhonkhon
Official URL https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon
Description Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
File Size 168 KB
Installation Count 97
Current Version 3.9.22
Last Updated 2023-09-22
Publish Date 2020-06-18
Rating 3.00/5 Total 4 Ratings
Developer https://christianoliff.com
Email [email protected]
Payment Type free
Extension Website https://github.com/coliff/sender-brand-icon-avatars-for-email
Supported Languages 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
    }
}