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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bingkang.hu และคุณลักษณะหลักของมันคือ "Chrome request proxy extension 1. Supports modifying Ajax/Fetch Request query 2. Supports modifying Ajax/Fetch Request body 3.…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Request Proxy

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                ""
            ]
        }
    ]
}