Sender Avatar Icons for Gmail

Unofficial Plugin. Displays avatars brand icons for senders in message view

Was ist Sender Avatar Icons for Gmail?

Sender Avatar Icons for Gmail ist eine Chrome-Erweiterung, die von https://christianoliff.com entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial Plugin. Displays avatars brand icons for senders in message view".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Sender Avatar Icons for Gmail-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sender Avatar Icons for Gmail-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

                        Adds sender avatar icons for hundreds of popular brands

- Super-fast with no JavaScript or external resources
- All icons are hi-res SVG from Font Awesome (https://fontawesome.com/icons?s=brands)
- Free and Open Source database (https://github.com/coliff/sender-brand-icon-avatars-for-email)                    

Grundlegende Informationen zur Erweiterung

Name Sender Avatar Icons for Gmail Sender Avatar Icons for Gmail
ID mmppbafobakmpfdhgdmbokodhdcecaii
Offizielle URL https://chromewebstore.google.com/detail/sender-avatar-icons-for-g/mmppbafobakmpfdhgdmbokodhdcecaii
Beschreibung Unofficial Plugin. Displays avatars brand icons for senders in message view
Dateigröße 221 KB
Installationsanzahl 26
Aktuelle Version 3.10.17
Letztes Update 2023-10-17
Veröffentlichungsdatum 2020-06-20
Entwickler https://christianoliff.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/coliff/sender-brand-icon-avatars-for-email
Hilfeseite URL 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": "Sender Avatar Icons for Gmail",
    "version": "3.10.17",
    "description": "Unofficial Plugin. Displays avatars brand icons for senders in message view",
    "homepage_url": "https:\/\/mail.google.com\/mail\/u\/",
    "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": "Sender Avatar Icons for Gmail"
    },
    "content_scripts": [
        {
            "css": [
                "css\/fa.css",
                "css\/extra.css",
                "css\/simple-icons.css",
                "css\/trimble.css"
            ],
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ]
        }
    ],
    "content_security_policy": "object-src 'self'",
    "permissions": [
        "activeTab",
        "https:\/\/mail.google.com\/mail\/*"
    ],
    "optional_permissions": [
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "content.js"
        ],
        "persistent": true
    }
}