Gmail Sender Icons

Quickly identify the sender of email messages in Gmail without opening the message.

Gmail Sender Iconsคืออะไร?

Gmail Sender Icons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://digitalinspiration.com และคุณลักษณะหลักของมันคือ "Quickly identify the sender of email messages in Gmail without opening the message."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Sender Icons

ดาวน์โหลดไฟล์ส่วนขยาย Gmail Sender Icons ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Gmail Sender Icons is a Google Chrome extension that makes it easy for you to quickly and visually identify email senders in Gmail. It shows the company domain name of the email sender and the official logo (favicon) of the sender's organization alongside the email message. 

For instance, if you receive an email from [email protected], the Gmail extension will add a virtual label google.com to your email message and also a logo of the Google website next to the message so you can immediately identify the sender in the email list.

Gmail Sender Icons has been featured on Product Hunt, LifeHacker, The Next Web and host of popular websites.

The favicons and the sender's domain are visible across Gmail including search results. The sender's label is applied virtually and the actual labels of the email message are left unchanged.

The Gmail Chrome extension uses the Google S2 service for generating the website's favicon while the Gmail messages are parsed with the Inbox SDK framework. All processing is done locally in your browser and no Gmail data is ever shared or uploaded anywhere.

The add-on is open source and the code is available on Github.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gmail Sender Icons Gmail Sender Icons
ID jniljaamodclkmphgkgkooplflhkadpg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-sender-icons/jniljaamodclkmphgkgkooplflhkadpg
คำอธิบาย Quickly identify the sender of email messages in Gmail without opening the message.
ขนาดไฟล์ 271 KB
จำนวนการติดตั้ง 26,428
เวอร์ชันปัจจุบัน 2.1
อัปเดตครั้งล่าสุด 2022-03-24
วันที่เผยแพร่ 2019-03-27
คะแนน 4.43/5 รวมทั้งหมด 127 คะแนน
ผู้พัฒนา https://digitalinspiration.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.labnol.org/internet/email-senders-in-gmail/29226/
URL หน้าช่วยเหลือ https://digitalinspiration.com/support
URL หน้านโยบายความเป็นส่วนตัว https://digitalinspiration.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Sender Icons",
    "description": "Quickly identify the sender of email messages in Gmail without opening the message.",
    "version": "2.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/mail.google.com\/"
    ],
    "manifest_version": 2,
    "short_name": "GmailSenderIcons",
    "author": "Digital Inspiration",
    "homepage_url": "https:\/\/digitalinspiration.com\/",
    "web_accessible_resources": [
        "*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Show sender icons in Gmail",
        "default_popup": "options.html"
    },
    "icons": {
        "32": "icon.png",
        "64": "icon.png",
        "128": "icon.png",
        "256": "icon.png"
    }
}