Save on your Amazon purchases in Europe

Save on your Amazon purchases in Europe

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

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__",
  "description": "__MSG_appDesc__",
  "version": "1.1.15",
  "default_locale": "en",
  "action": {
    "default_popup": "src/popup/popup.html",
    "default_icon": {
      "16": "img/icon16x16.png",
      "48": "img/icon48x48.png",
      "128": "img/icon128x128.png"
    }
  },
  "icons": {
    "16": "img/icon16x16.png",
    "48": "img/icon48x48.png",
    "128": "img/icon128x128.png"
  },
  "options_page": "src/options/options.html",
  "background": {
    "service_worker": "src/background/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "js": [
        "src/content/content.js"
      ],
      "css": [
        "src/content/content.css"
      ],
      "matches": [
        "*://*.amazon.co.uk/*",
        "*://*.amazon.com.be/*",
        "*://*.amazon.de/*",
        "*://*.amazon.es/*",
        "*://*.amazon.fr/*",
        "*://*.amazon.it/*",
        "*://*.amazon.nl/*",
        "*://*.amazon.pl/*",
        "*://*.amazon.se/*"
      ]
    }
  ]
}