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
    }
}