Request Proxy

Request Proxy

Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Request Proxy",
  "version": "1.0.2",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "16": "/images/request_proxy_enabled16.png",
      "32": "/images/request_proxy_enabled32.png",
      "48": "/images/request_proxy_enabled48.png",
      "128": "/images/request_proxy_enabled128.png"
    }
  },
  "icons": {
    "16": "/images/request_proxy_enabled16.png",
    "32": "/images/request_proxy_enabled32.png",
    "48": "/images/request_proxy_enabled48.png",
    "128": "/images/request_proxy_enabled128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "wrapper.js",
        "dist/index.html",
        "dist/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}