Protonmail Avatars

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

Was ist Protonmail Avatars?

Protonmail Avatars ist eine Chrome-Erweiterung, die von https://christianoliff.com entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".

Erweiterungsscreenshots

screenshot

Protonmail Avatars-Erweiterungs-CRX-Datei herunterladen

Laden Sie Protonmail Avatars-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Protonmail Avatars Protonmail Avatars
ID oeafplhigdpghchmklofmblpkhonkhon
Offizielle URL https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon
Beschreibung Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Dateigröße 168 KB
Installationsanzahl 97
Aktuelle Version 3.9.22
Letztes Update 2023-09-22
Veröffentlichungsdatum 2020-06-18
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler https://christianoliff.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/coliff/sender-brand-icon-avatars-for-email
Unterstützte Sprachen 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
    }
}