Gmail sender favicons (domain icons)
Display domain favicons in Gmail list view
What is Gmail sender favicons (domain icons)?
Gmail sender favicons (domain icons) is a Chrome extension developed by @Lorin, and its main feature is "Display domain favicons in Gmail list view".
Extension Screenshots
Download Gmail sender favicons (domain icons) Extension CRX File
Download Gmail sender favicons (domain icons) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Gmail sender favicons (domain icons) |
ID | bnnggflmajmfkpdnaagpjmnaaagbpjpd |
Official URL | https://chromewebstore.google.com/detail/gmail-sender-favicons-dom/bnnggflmajmfkpdnaagpjmnaaagbpjpd |
Description | Display domain favicons in Gmail list view |
File Size | 28.47 KB |
Installation Count | 674 |
Current Version | 0.121 |
Last Updated | 2017-03-11 |
Publish Date | 2017-03-11 |
Rating | 4.80/5 Total 5 Ratings |
Developer | @Lorin |
Payment Type | free |
Supported Languages | 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": [ "*" ] } |