Gmail lists
Manage your contacts using lists and use them on Gmail with ease
What is Gmail lists?
Gmail lists is a Chrome extension developed by https://korakas.me, and its main feature is "Manage your contacts using lists and use them on Gmail with ease".
Extension Screenshots
Download Gmail lists Extension CRX File
Download Gmail lists 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
- Create lists giving the proper name - Insert emails on your lists - Use the list easily on compose form Changelog: 2.0.1 Added Cc and Bcc support 2.0.0 Updated extension UI 1.0.4 Added Inbox support
Extension Basic Information
Name | Gmail lists |
ID | pmbhgdcnpijjbpaipmojlepdnokokame |
Official URL | https://chromewebstore.google.com/detail/gmail-lists/pmbhgdcnpijjbpaipmojlepdnokokame |
Description | Manage your contacts using lists and use them on Gmail with ease |
File Size | 225 KB |
Installation Count | 27 |
Current Version | 2.0.2 |
Last Updated | 2018-06-26 |
Publish Date | 2018-06-26 |
Rating | 5.00/5 Total 5 Ratings |
Developer | https://korakas.me |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail lists", "description": "Manage your contacts using lists and use them on Gmail with ease", "version": "2.0.2", "author": "Thanos Korakas", "browser_action": { "default_title": "Gmail lists", "default_popup": "popup.html", "default_icon": { "16": "assets\/icon-blue16.png", "24": "assets\/icon-blue24.png", "32": "assets\/icon-blue32.png" } }, "permissions": [ "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "css": [ "css\/content.css" ], "js": [ "inboxsdk.js", "content.js" ] } ], "web_accessible_resources": [ "assets\/*", "css\/content.css" ], "icons": { "16": "assets\/icon-blue16.png", "48": "assets\/icon-blue48.png", "128": "assets\/icon-blue128.png" } } |