DontPayFull - Automatic Coupons

Automatically finds coupons and applies the best coupon code at checkout
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DontPayFull - Automatic Coupons",
  "version": "1.4.33",
  "description": "Automatically finds coupons and applies the best coupon code at checkout",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp7hTYeoSpV8BRLMMsOSh6jExyzTRlcSzBOR4LFlgQK1cIulXt9fHpirljh4qYXmeLRr1ckyJij19yolINrUjZ5Qgr1lpL3iCEs8H0qK3ve7f+WVWBGdHo/+DFYoZi4P8wKko/BtwULq962J7qPlb6nQPC+DXzw5VLEMcfy2Y9r27pyt7rdF9hOA+ojOsAFij/K4/T6N+GZBrgI4ScEblcxBscDEb1o1F/j/zH/9iKY9mri2hZYf7GcsG04RANueKKWQVFqrE31eiPLQBAPbgzIhNwWdksXs5KsfRD6s9E5EBVdJ74quVSIY+NghoIjzy9FFk7fmzWEJuuMSsgAIaKQIDAQAB",
  "minimum_chrome_version": "100",
  "action": {
    "default_icon": {
      "24": "./assets/icons/dontpayfull-icon-grayscale.png"
    }
  },
  "background": {
    "service_worker": "./dist/background/bg.global.js"
  },
  "icons": {
    "16": "./assets/icons/16x16.png",
    "48": "./assets/icons/48x48.png",
    "128": "./assets/icons/128x128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "webNavigation",
    "webRequest",
    "management",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/confetti-ball-joypixels.gif",
        "dist/contentScripts/index.global.js",
        "dist/contentScripts/style.css",
        "assets/**"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src https://api.dontpayfull.com https://events.dpf.cloud https://sentry.dpf.cloud https://www.google-analytics.com"
  }
}