Response Box

Response Box

Pre-built messages from templates in your browser. Canned messages on right click that can be used in emails/social medias/chats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Response Box",
  "version": "1.32",
  "description": "Pre-built messages from templates in your browser. Canned messages on right click that can be used in emails/social medias/chats.",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "images/48.png"
    },
    "default_title": "Response Box"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "<all_urls>",
    "storage",
    "clipboardWrite",
    "clipboardRead"
  ]
}