AI-Powered DealDazzle: Searching Alternatives

AI-Powered DealDazzle: Searching Alternatives

DealDazzle automatically finds coupons, gives you cashback & saves money when you shop online!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AI-Powered DealDazzle: Searching Alternatives",
  "description": "DealDazzle automatically finds coupons, gives you cashback & saves money when you shop online!",
  "version": "3.1.20",
  "manifest_version": 3,
  "permissions": [
    "background",
    "storage",
    "declarativeContent",
    "activeTab",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "inpage.js",
        "inpage.css"
      ]
    }
  ],
  "action": {
    "default_title": "Deal Dazzle",
    "default_popup": "main.html#/popup",
    "default_icon": "logo/default.png"
  },
  "icons": {
    "16": "logo/16.png",
    "32": "logo/32.png",
    "48": "logo/48.png",
    "128": "logo/128.png",
    "256": "logo/256.png"
  }
}