CouponFeature Coupon Finder

CouponFeature Coupon Finder

CouponFeature automatically finds the best coupons & discount codes as you shop online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CouponFeature Coupon Finder",
  "version": "1.0.1",
  "description": "CouponFeature automatically finds the best coupons & discount codes as you shop online.",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "128": "img/icon128.png",
      "129": "img/g-icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "img/logo.png",
        "img/r-m.png",
        "img/l-m.png",
        "img/close.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ]
}