Add "Mark All Read" button to GMail
Allows you to mark all messages as read with one click.
什么是Add "Mark All Read" button to GMail?
Add "Mark All Read" button to GMail是由pressbin开发的Chrome扩展程序,该扩展的主要功能是“Allows you to mark all messages as read with one click.”。
扩展截图
下载Add "Mark All Read" button to GMail扩展crx文件
下载Add "Mark All Read" button to GMail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The button allows you to change every visible message with an "unread" status to "read" status.
扩展基本信息
名称 | Add "Mark All Read" button to GMail |
ID | mhgahabpbdjldmonmfgehfhjmgjedjkc |
官方URL | https://chromewebstore.google.com/detail/add-mark-all-read-button/mhgahabpbdjldmonmfgehfhjmgjedjkc |
简介 | Allows you to mark all messages as read with one click. |
文件大小 | 4.38 KB |
安装次数 | 672 |
当前版本 | 1.3 |
更新时间 | 2022-07-01 |
上架时间 | 2015-01-06 |
评分 | 3.00/5 共14次评分 |
开发者 | pressbin |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [ "https:\/\/mail.google.com\/mail*" ], "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "converted_from_user_script": true, "description": "Allows you to mark all messages as read with one click.", "name": "Add \"Mark All Read\" button to GMail", "version": "1.3" } |