Canned Responses for Google Inbox™ and Gmail™

Canned Responses for Google Inbox™ and Gmail™

Create quick and easy email templates for Gmail™, Google Inbox™, LinkedIn™, Facebook™, Hotmail™, AOL™ and more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "short_name": "__MSG_shortDescription__",
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "clipboardRead",
    "clipboardWrite"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/chromereload.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}