Gmail++
Improves the user experience of Gmail
什么是Gmail++?
Gmail++是由Michael Pfaff开发的Chrome扩展程序,该扩展的主要功能是“Improves the user experience of Gmail”。
扩展截图
下载Gmail++扩展crx文件
下载Gmail++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Gmail++ |
ID | jcbfnofllipbepnolhgcdloichjbcena |
官方URL | https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena |
简介 | Improves the user experience of Gmail |
文件大小 | 9.16 KB |
安装次数 | 182 |
当前版本 | 1.1.0 |
更新时间 | 2022-10-12 |
上架时间 | 2022-10-09 |
开发者 | Michael Pfaff |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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]" } } } |