Request Proxy

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

什么是Request Proxy?

Request Proxy是由bingkang.hu开发的Chrome扩展程序,该扩展的主要功能是“Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…”。

扩展截图

screenshot
screenshot
screenshot

下载Request Proxy扩展crx文件

下载Request Proxy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Chrome request proxy extension

1. Supports modifying Ajax/Fetch Request query
2. Supports modifying Ajax/Fetch Request body
3. Supports modifying Ajax/Fetch Request header
4. Supports modifying Ajax/Fetch Response

github: https://github.com/hubingkang/request-proxy                    

扩展基本信息

名称 Request Proxy Request Proxy
ID digjmlhcaacaacikomjmnknlgpgnepph
官方URL https://chromewebstore.google.com/detail/request-proxy/digjmlhcaacaacikomjmnknlgpgnepph
简介 Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…
文件大小 2.27 MB
安装次数 57
当前版本 1.0.2
更新时间 2022-05-26
上架时间 2022-05-20
评分 5.00/5 共2次评分
开发者 bingkang.hu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/hubingkang/request-proxy
支持的语言 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Request Proxy",
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "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": [
                ""
            ]
        }
    ]
}