Pouch - Automatic Coupons at Checkout

Pouch - Automatic Coupons at Checkout

Pouch automatically applies coupon codes at the checkout page with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "author": "Global Savings Group",
  "version": "10.4.3",
  "default_locale": "en",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "icons": {
    "16": "static/16x16-active.png",
    "48": "static/48x48-active.png",
    "128": "static/128x128-active.png"
  },
  "action": {
    "default_icon": "static/128x128-inactive.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "dist/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}