Sender Avatar Icons for Gmail

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

Sender Avatar Icons for Gmail là gì?

Sender Avatar Icons for Gmail là một tiện ích mở rộng Chrome được phát triển bởi https://christianoliff.com, và tính năng chính của nó là "Unofficial Plugin. Displays avatars brand icons for senders in message view".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sender Avatar Icons for Gmail

Tải xuống các tệp mở rộng Sender Avatar Icons for Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sender Avatar Icons for Gmail Sender Avatar Icons for Gmail
ID mmppbafobakmpfdhgdmbokodhdcecaii
URL Chính Thức https://chromewebstore.google.com/detail/sender-avatar-icons-for-g/mmppbafobakmpfdhgdmbokodhdcecaii
Mô tả Unofficial Plugin. Displays avatars brand icons for senders in message view
Kích Thước Tệp 221 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 3.10.17
Cập Nhật Lần Cuối 2023-10-17
Ngày Phát Hành 2020-06-20
Nhà Phát Triển https://christianoliff.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/coliff/sender-brand-icon-avatars-for-email
URL Trang Trợ Giúp https://github.com/coliff/sender-brand-icon-avatars-for-email
Ngôn Ngữ Được Hỗ Trợ 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
    }
}