Protonmail Avatars

Unofficial plugin. Displays avatar icons for senders in the Protonmail interface

Что такое Protonmail Avatars?

Protonmail Avatars - это расширение Chrome, разработанное https://christianoliff.com, и его основная функция - "Unofficial plugin. Displays avatar icons for senders in the Protonmail interface".

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

screenshot

Скачать файл CRX расширения Protonmail Avatars

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

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

                        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                    

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

Название Protonmail Avatars Protonmail Avatars
ID oeafplhigdpghchmklofmblpkhonkhon
Официальный URL https://chromewebstore.google.com/detail/protonmail-avatars/oeafplhigdpghchmklofmblpkhonkhon
Описание Unofficial plugin. Displays avatar icons for senders in the Protonmail interface
Размер файла 168 KB
Количество установок 97
Текущая Версия 3.9.22
Последнее Обновление 2023-09-22
Дата публикации 2020-06-18
Рейтинг 3.00/5 Всего 4 оценок
Разработчик https://christianoliff.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения 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": "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
    }
}