IReviews Shopping Assistant

IReviews Shopping Assistant

Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "name": "IReviews Shopping Assistant",
  "version": "3.0.10",
  "description": "Never miss out on savings again! Compare and track product prices and availability while browsing your favorite stores.",
  "icons": {
    "512": "NewLogo.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "notifications"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "https://api.ireviews.com/*",
    "https://fonts.googleapis.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/jquery-3.6.0.min.js",
        "./static/js/chart.min.js",
        "foreground.js",
        "gtag.js"
      ]
    }
  ]
}