Price Checker: Price Comparison Tool

Price Checker: Price Comparison Tool

Use Price Checker to compare the different store prices before you buy and save up to 60%!

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_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "2.5",
  "short_name": "Price Checker",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "status.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.asos.com/*",
        "*://*.asos.de/*",
        "*://*.asos.fr/*"
      ],
      "js": [
        "jsm.js",
        "content.js",
        "main.js",
        "juim.js",
        "prod.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://*.fashiondiscounts.today/*",
    "https://*.fd2day.com/*",
    "*://*.asos.com/*",
    "*://*.asos.de/*",
    "*://*.asos.fr/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  }
}