Protonmail Avatars

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

Qu'est-ce que Protonmail Avatars ?

Protonmail Avatars est une extension Chrome développée par https://christianoliff.com, et sa fonction principale est "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Protonmail Avatars

Téléchargez les fichiers d'extension Protonmail Avatars au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Protonmail Avatars Protonmail Avatars
ID oeafplhigdpghchmklofmblpkhonkhon
URL Officiel https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon
Description Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Taille du Fichier 168 KB
Nombre d'Installations 97
Version Actuelle 3.9.22
Dernière Mise à Jour 2023-09-22
Date de Publication 2020-06-18
Évaluation 3.00/5 Total 4 Évaluations
Développeur https://christianoliff.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/coliff/sender-brand-icon-avatars-for-email
Langues Prises en Charge 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
    }
}