Gmail sender favicons (domain icons)
Display domain favicons in Gmail list view
Gmail sender favicons (domain icons)คืออะไร?
Gmail sender favicons (domain icons) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย @Lorin และคุณลักษณะหลักของมันคือ "Display domain favicons in Gmail list view"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail sender favicons (domain icons)
ดาวน์โหลดไฟล์ส่วนขยาย Gmail sender favicons (domain icons) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Shows domain favicons in Gmail list view, ignoring certain common public email domains - at this time: gmail.com, outlook.com, hotmail.com, rogers.com. If this extension becomes popular I'll add a settings window to allow a custom blacklist. If I forgot any major domains I'll update the version. Feel free to file a support ticket.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gmail sender favicons (domain icons) |
ID | bnnggflmajmfkpdnaagpjmnaaagbpjpd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gmail-sender-favicons-dom/bnnggflmajmfkpdnaagpjmnaaagbpjpd |
คำอธิบาย | Display domain favicons in Gmail list view |
ขนาดไฟล์ | 28.47 KB |
จำนวนการติดตั้ง | 674 |
เวอร์ชันปัจจุบัน | 0.121 |
อัปเดตครั้งล่าสุด | 2017-03-11 |
วันที่เผยแพร่ | 2017-03-11 |
คะแนน | 4.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | @Lorin |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail sender favicons (domain icons)", "version": "0.121", "description": "Display domain favicons in Gmail list view", "homepage_url": "http:\/\/www.lorinhalpert.com", "author": "Lorin Halpert", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "inboxsdk.js", "content.js" ], "css": [ "favicons.css" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/mail.google.com\/" ], "web_accessible_resources": [ "*" ] } |