ProductWatch

ProductWatch

Get notified when a product's price or availibiity changes. Add your own webhook URL to ping when a product changes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ProductWatch",
  "description": "Get notified when a product's price or availibiity changes.  Add your own webhook URL to ping when a product changes.",
  "version": "1.0.2",
  "manifest_version": 3,
  "default_locale": "en",
  "options_page": "home.html",
  "background": {
    "service_worker": "build/background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "alarms",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "ProductWatch",
    "default_icon": {
      "16": "/img/bag-16.png",
      "32": "/img/bag-32.png",
      "48": "/img/bag-48.png",
      "128": "/img/bag-128.png"
    }
  },
  "icons": {
    "16": "/img/bag-fill-16.png",
    "32": "/img/bag-fill-32.png",
    "48": "/img/bag-fill-48.png",
    "128": "/img/bag-fill-128.png"
  }
}