Gmail++
Improves the user experience of Gmail
What is Gmail++?
Gmail++ is a Chrome extension developed by Michael Pfaff, and its main feature is "Improves the user experience of Gmail".
Extension Screenshots
Download Gmail++ Extension CRX File
Download Gmail++ 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
Improves the user experience of Gmail. Features: - Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts. - Checks external POP3 accounts on page load. - Checks external POP3 accounts at a configurable interval.
Extension Basic Information
Name | Gmail++ |
ID | jcbfnofllipbepnolhgcdloichjbcena |
Official URL | https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena |
Description | Improves the user experience of Gmail |
File Size | 9.16 KB |
Installation Count | 182 |
Current Version | 1.1.0 |
Last Updated | 2022-10-12 |
Publish Date | 2022-10-09 |
Developer | Michael Pfaff |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gmail++", "version": "1.1.0", "description": "Improves the user experience of Gmail", "icons": { "48": "icons\/icon-48.png", "64": "icons\/icon-64.png" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/mail.google.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "lib.js", "main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "browser_style": true }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |