Sender Icons for Gmail™
Add a sender icon for all emails in your Gmail inbox.
Sender Icons for Gmail™คืออะไร?
Sender Icons for Gmail™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lynn และคุณลักษณะหลักของมันคือ "Add a sender icon for all emails in your Gmail inbox."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sender Icons for Gmail™
ดาวน์โหลดไฟล์ส่วนขยาย Sender Icons for Gmail™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Sender Icons for Gmail™ is an extension that lets you easily add icons for individual emails (based on the sender's address) in the Gmail inbox. Simply add the addon to your browser and open or reload your Gmail inbox. You will see an icon next to the - subject - column for each email. The icon is derived from the email's domain address. Please note that icons are set to be 16 pixels in width and height. To change the icon size to 32 pixels, please visit the extension options page. Note: to hide icons, please press on the toolbar button once to disable the addon, then reload the Gmail tab. Important note: Sender Icons for Gmail™ add-on does NOT belong or relate to Google Inc at all. It is an unofficial extension that is developed and maintained independently by its author. Gmail™ is a registered trademark of Google Inc. If you see any bug(s) or have a feature request, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/sender-icons-for-gmail.html).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sender Icons for Gmail™ |
ID | bncbcpnjglcbgoambglmmfoakffngkjg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sender-icons-for-gmail/bncbcpnjglcbgoambglmmfoakffngkjg |
คำอธิบาย | Add a sender icon for all emails in your Gmail inbox. |
ขนาดไฟล์ | 35.26 KB |
จำนวนการติดตั้ง | 1,053 |
เวอร์ชันปัจจุบัน | 0.1.5 |
อัปเดตครั้งล่าสุด | 2023-12-04 |
วันที่เผยแพร่ | 2018-06-13 |
คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Lynn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mybrowseraddon.com/sender-icons-for-gmail.html |
URL หน้าช่วยเหลือ | https://mybrowseraddon.com/sender-icons-for-gmail.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.5", "manifest_version": 3, "offline_enabled": true, "permissions": [ "storage" ], "name": "Sender Icons for Gmail\u2122", "description": "Add a sender icon for all emails in your Gmail inbox.", "homepage_url": "https:\/\/mybrowseraddon.com\/sender-icons-for-gmail.html", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "options_ui": { "open_in_tab": true, "page": "data\/options\/options.html" }, "action": { "default_title": "Sender Icons for Gmail\u2122", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.mail.google.com\/*" ], "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |