Amazon Discount Hunter

Amazon Discount Hunter

3/3/2021

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazon Discount Hunter",
  "version": "1.2",
  "description": "3/3/2021",
  "manifest_version": 2,
  "icons": {
    "16": "icon-extension-grey-16.png",
    "48": "icon-extension-grey-48.png",
    "128": "icon-extension-grey-128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon-extension-grey-16.png",
      "19": "icon-extension-grey-19.png",
      "32": "icon-extension-grey-32.png",
      "38": "icon-extension-grey-38.png",
      "128": "icon-extension-grey-128.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "slick.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.amazon.*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}