Simple Price Alerts

Simple Price Alerts

Price change alerts: never miss a promotion/flash sale again.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.5.0",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/actif-16.png",
    "32": "icons/actif-32.png",
    "48": "icons/actif-48.png",
    "128": "icons/actif-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib.js",
        "parameters.js",
        "sellersParsing.js",
        "sellerPage.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.png",
        "images/*.png",
        "*.html",
        "*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/inactif-128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Simple Price Alerts"
  }
}