Batch Reply for Gmail™

Batch Reply for Gmail™

A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Batch Reply for Gmail™",
  "description": "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.",
  "manifest_version": 3,
  "version": "1.3",
  "icons": {
    "16": "assets/img/icon16.png",
    "48": "assets/img/icon48.png",
    "128": "assets/img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "assets/js/jquery.js",
        "assets/js/content.js"
      ]
    }
  ]
}