Request Proxy

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

Request Proxy là gì?

Request Proxy là một tiện ích mở rộng Chrome được phát triển bởi bingkang.hu, và tính năng chính của nó là "Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Request Proxy

Tải xuống các tệp mở rộng Request Proxy dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Request Proxy Request Proxy
ID digjmlhcaacaacikomjmnknlgpgnepph
URL Chính Thức https://chromewebstore.google.com/detail/request-proxy/digjmlhcaacaacikomjmnknlgpgnepph
Mô tả Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…
Kích Thước Tệp 2.27 MB
Số Lần Cài Đặt 57
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-05-26
Ngày Phát Hành 2022-05-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bingkang.hu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hubingkang/request-proxy
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}