Sender Avatar Icons for Gmail

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

Что такое Sender Avatar Icons for Gmail?

Sender Avatar Icons for Gmail - это расширение Chrome, разработанное https://christianoliff.com, и его основная функция - "Unofficial Plugin. Displays avatars brand icons for senders in message view".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Sender Avatar Icons for Gmail

Скачайте файлы расширений Sender Avatar Icons for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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)                    

Основная информация о расширении

Название Sender Avatar Icons for Gmail Sender Avatar Icons for Gmail
ID mmppbafobakmpfdhgdmbokodhdcecaii
Официальный URL https://chromewebstore.google.com/detail/sender-avatar-icons-for-g/mmppbafobakmpfdhgdmbokodhdcecaii
Описание Unofficial Plugin. Displays avatars brand icons for senders in message view
Размер файла 221 KB
Количество установок 26
Текущая Версия 3.10.17
Последнее Обновление 2023-10-17
Дата публикации 2020-06-20
Разработчик https://christianoliff.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/coliff/sender-brand-icon-avatars-for-email
URL страницы помощи 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": "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
    }
}