SpyDeals Chrome Extension

SpyDeals Chrome Extension

Gets information about coupons on SpyDeals for browsed website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SpyDeals Chrome Extension",
  "version": "2.0.1",
  "description": "Gets information about coupons on SpyDeals for browsed website",
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "src/popup.html",
    "default_icon": {
      "16": "src/images/icon_16.png",
      "32": "src/images/icon_32.png",
      "48": "src/images/icon_48.png",
      "128": "src/images/icon_128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "src/contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.spydeals.nl/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "src/utils/spydeals-toast.js",
    "src/utils/spydeals-toast.css"
  ],
  "icons": {
    "16": "src/images/icon_16.png",
    "32": "src/images/icon_32.png",
    "48": "src/images/icon_48.png",
    "128": "src/images/icon_128.png"
  },
  "manifest_version": 2
}