Batch Reply for Gmail™
A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
Hvad er Batch Reply for Gmail™?
Batch Reply for Gmail™ er en Chrome-udvidelse udviklet af Elad Nava, og dens hovedfunktion er "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".
Udvidelsesskærmbilleder
Download Batch Reply for Gmail™-udvidelses-CRX-fil
Download Batch Reply for Gmail™-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Batch Reply for Gmail™ |
ID | hclnmjfbjpemfjgcakmbpjkbclchmaig |
Officiel URL | https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig |
Beskrivelse | A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once. |
Filstørrelse | 65.17 KB |
Antal Installationer | 10,329 |
Nuværende Version | 1.1 |
Senest Opdateret | 2014-08-19 |
Udgivelsesdato | 2014-08-19 |
Bedømmelse | 3.06/5 Samlet 33 Bedømmelser |
Udvikler | Elad Nava |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |