Protonmail Avatars
Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Hvad er Protonmail Avatars?
Protonmail Avatars er en Chrome-udvidelse udviklet af https://christianoliff.com, og dens hovedfunktion er "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".
Udvidelsesskærmbilleder
Download Protonmail Avatars-udvidelses-CRX-fil
Download Protonmail Avatars-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | oeafplhigdpghchmklofmblpkhonkhon |
| Officiel URL | https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon |
| Beskrivelse | Unofficial plugin. Displays avatar icons for senders in the Protonmail interface |
| Filstørrelse | 168 KB |
| Antal Installationer | 97 |
| Nuværende Version | 3.9.22 |
| Senest Opdateret | 2023-09-22 |
| Udgivelsesdato | 2020-06-18 |
| Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
| Udvikler | https://christianoliff.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/coliff/sender-brand-icon-avatars-for-email |
| Understøttede Sprog | 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
}
} | |