Batch Reply for Gmail™
A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Was ist Batch Reply for Gmail™?
Batch Reply for Gmail™ ist eine Chrome-Erweiterung, die von Elad Nava entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".
Erweiterungsscreenshots
Batch Reply for Gmail™-Erweiterungs-CRX-Datei herunterladen
Laden Sie Batch Reply for Gmail™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hclnmjfbjpemfjgcakmbpjkbclchmaig |
| Offizielle URL | https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig |
| Beschreibung | A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once. |
| Dateigröße | 65.17 KB |
| Installationsanzahl | 10,329 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2014-08-19 |
| Veröffentlichungsdatum | 2014-08-19 |
| Bewertung | 3.06/5 Insgesamt 33 Bewertungen |
| Entwickler | Elad Nava |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
}
]
} | |