Discountly

Discountly

Secure Your Shopping Experience with Discountly: Uncover Savings, Stay Safe!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Discountly",
  "version": "0.0.4",
  "description": "Secure Your Shopping Experience with Discountly: Uncover Savings, Stay Safe!",
  "options_page": "src/options/index.html",
  "background": {
    "service_worker": "src/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": "discountlyIcon.png"
  },
  "icons": {
    "512": "discountlyIcon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/content/index.js"
      ],
      "css": []
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "discountlyIcon.png",
        "src/inject/index.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}