Airwallex Interceptor

Airwallex Interceptor

Test your branch without merging

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Airwallex Interceptor",
  "version": "2.37.10",
  "description": "Test your branch without merging",
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "images/airwallex.png",
    "32": "images/airwallex.png",
    "48": "images/airwallex.png",
    "128": "images/airwallex.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "dist/serviceWorker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "dist/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/*.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}