Dutycast

Dutycast

Shop global. Pay local. No hidden fees.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "default_locale": "en",
  "version": "1.37.0",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "static/js/service-worker.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/jquery-3.3.1.min.js",
        "static/js/content.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.dutycast.com/*"
      ],
      "js": [
        "static/js/jquery-3.3.1.min.js",
        "static/js/checkout.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.dutycast.xyz/*",
        "*://*.dutycast.com/*"
      ],
      "js": [
        "static/js/checkout-start-load.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "Your Shopping Assistant",
    "default_popup": "popup.html",
    "default_icon": "static/assets/icon.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "proxy"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "128": "static/assets/icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "content_scripts": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}