TakeDiscount - Compare prices and save money

TakeDiscount - Compare prices and save money

Find the best price in all Amazon stores and start saving money

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.2",
  "icons": {
    "16": "iconofinal.png",
    "48": "iconofinal.png",
    "64": "iconofinal.png",
    "128": "iconofinal.png"
  },
  "description": "__MSG_appDesc__",
  "default_locale": "es",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "https://*.amazon.*/*/dp/*/*",
        "https://*.amazon.*/dp/*",
        "https://*.amazon.*.*/dp/*/*",
        "https://*.amazon.*.*/*/dp/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background_script.js"
  }
}