Canned Replies For eBay, Amazon, Gmail & More

Canned Replies For eBay, Amazon, Gmail & More

Canned Replies For eBay, Amazon, Gmail and More

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Canned Replies For eBay, Amazon, Gmail & More",
  "version": "1.1.2",
  "author": "eBay Selling Guide",
  "description": "Canned Replies For eBay, Amazon, Gmail and More",
  "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' https://d2wy8f7a9ursnm.cloudfront.net; img-src https://notify.bugsnag.com; connect-src 'self' https://www.google-analytics.com",
  "options_ui": {
    "page": "index.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "storage",
    "clipboardWrite",
    "contextMenus",
    "https://www.google-analytics.com/"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "19": "img/canned-replies-icon-19.png",
    "48": "img/canned-replies-icon-48.png",
    "128": "img/canned-replies-icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/canned-replies-icon-19.png",
      "38": "img/canned-replies-icon-38.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "img/*.png",
    "angular.min.js.map",
    "index.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "http://*/*",
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "vendor.js",
        "js/analytics.js",
        "js/main.js",
        "js/page-detector.js"
      ],
      "css": [
        "css/canned-replies.css"
      ],
      "run_at": "document_end"
    }
  ]
}