Batch Reply for Gmail™
A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
什么是Batch Reply for Gmail™?
Batch Reply for Gmail™是由Elad Nava开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.”。
扩展截图
下载Batch Reply for Gmail™扩展crx文件
下载Batch Reply for Gmail™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simply go to https://mail.google.com/, select conversations you want to reply to, and click the "Reply" button at the top of the screen! This extension is open-source. https://github.com/eladnava/batch-reply-for-gmail Gmail™ is a registered trademark of Google. This extension is unaffiliated with Google.
扩展基本信息
名称 | Batch Reply for Gmail™ |
ID | hclnmjfbjpemfjgcakmbpjkbclchmaig |
官方URL | https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig |
简介 | A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once. |
文件大小 | 65.17 KB |
安装次数 | 10,329 |
当前版本 | 1.1 |
更新时间 | 2014-08-19 |
上架时间 | 2014-08-19 |
评分 | 3.06/5 共33次评分 |
开发者 | Elad Nava |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Batch Reply for Gmail\u2122", "description": "A chrome extension that makes it possible to reply to all selected conversations in Gmail\u2122 at once.", "manifest_version": 2, "version": "1.1", "icons": { "16": "assets\/img\/icon16.png", "48": "assets\/img\/icon48.png", "128": "assets\/img\/icon128.png" }, "permissions": [ "webNavigation" ], "background": { "scripts": [ "assets\/js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "assets\/js\/jquery.js", "assets\/js\/content.js" ] } ] } |