Easy Interceptor

Easy Interceptor

Easy Interceptor is a Chrome extension that intercepts HTTP requests in the form of XMLHttpRequest data requests. It's a good helper for developer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Easy Interceptor",
  "version": "2.0.1",
  "description": "__MSG_description__",
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "webRequestAuthProvider",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "default_locale": "zh_CN",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_title": "Easy Interceptor by hans000 - v2.0.0",
    "default_popup": "index.html",
    "default_icon": "images/128-gray.png"
  },
  "icons": {
    "16": "images/128.png",
    "32": "images/128.png",
    "48": "images/128.png",
    "128": "images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "injected.js",
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}