Coupon Cat

Coupon Cat

No more searching for coupons, just click and apply!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "name": "Coupon Cat",
  "short_name": "Coupon Cat",
  "description": "No more searching for coupons, just click and apply!",
  "icons": {
    "128": "img/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "background",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "img/icon-disabled-128.png"
  },
  "background": {
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*",
    "home.html"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}