Sender Avatar Icons for Gmail

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

Qu'est-ce que Sender Avatar Icons for Gmail ?

Sender Avatar Icons for Gmail est une extension Chrome développée par https://christianoliff.com, et sa fonction principale est "Unofficial Plugin. Displays avatars brand icons for senders in message view".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Sender Avatar Icons for Gmail

Téléchargez les fichiers d'extension Sender Avatar Icons for Gmail 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

                        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)                    

Informations de Base sur l'Extension

Nom Sender Avatar Icons for Gmail Sender Avatar Icons for Gmail
ID mmppbafobakmpfdhgdmbokodhdcecaii
URL Officiel https://chromewebstore.google.com/detail/sender-avatar-icons-for-g/mmppbafobakmpfdhgdmbokodhdcecaii
Description Unofficial Plugin. Displays avatars brand icons for senders in message view
Taille du Fichier 221 KB
Nombre d'Installations 26
Version Actuelle 3.10.17
Dernière Mise à Jour 2023-10-17
Date de Publication 2020-06-20
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
URL de la Page d'Aide 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": "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
    }
}