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. 擴展基本資訊
| 名稱 | |
| ID | hclnmjfbjpemfjgcakmbpjkbclchmaig |
| 官方網址 | 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"
]
}
]
} | |