Reply To Many**

Reply To Many**

Chrome Extension for GMail that allows you to Reply To Many emails at once while maintaining their individual threaded history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reply To Many**",
  "short_name": "RTM**",
  "description": "Chrome Extension for GMail that allows you to Reply To Many emails at once while maintaining their individual threaded history.",
  "version": "0.1.1",
  "icons": {
    "64": "rtmany-64.png",
    "128": "rtmany-128.png"
  },
  "permissions": [
    "http://mail.google.com/",
    "https://mail.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://mail.google.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "rtscript.js"
      ],
      "run_at": "document_end"
    }
  ]
}