Protonmail Avatars
Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Cos'è Protonmail Avatars?
Protonmail Avatars è un'estensione di Chrome sviluppata da https://christianoliff.com, e la sua funzione principale è "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Protonmail Avatars
Scarica i file di estensione Protonmail Avatars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Protonmail Avatars |
ID | oeafplhigdpghchmklofmblpkhonkhon |
URL Ufficiale | https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon |
Descrizione | Unofficial plugin. Displays avatar icons for senders in the Protonmail interface |
Dimensione del File | 168 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 3.9.22 |
Ultimo Aggiornamento | 2023-09-22 |
Data di Pubblicazione | 2020-06-18 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | https://christianoliff.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/coliff/sender-brand-icon-avatars-for-email |
Lingue Supportate | 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 } } |