Request Interceptor

Request Interceptor Extension for Chrome.

Request Interceptorคืออะไร?

Request Interceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย beDev และคุณลักษณะหลักของมันคือ "Request Interceptor Extension for Chrome."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Request Interceptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Request Interceptor provides you to intercept HTTP/HTTPS request packets. After intercepting, those request packets you can:
- Forward intercepted requests,
- Drop intercepted requests,
- Modify header values,
- Modify POST data,
- Add customized request headers,
- Delete customized request headers,
- Save request details as a JSON file,
- Copy URLs from requests,
- Pick which resource types to intercept,
- Browse request history.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Request Interceptor Request Interceptor
ID hkkjcknodnahjdnemannhkhnfedifkoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/request-interceptor/hkkjcknodnahjdnemannhkhnfedifkoh
คำอธิบาย Request Interceptor Extension for Chrome.
ขนาดไฟล์ 23.97 KB
จำนวนการติดตั้ง 1,007
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-07-01
วันที่เผยแพร่ 2021-06-30
คะแนน 4.25/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา beDev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Request Interceptor",
    "description": "Request Interceptor Extension for Chrome.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Request Interceptor",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "permissions": [
        "debugger",
        "storage",
        "unlimitedStorage"
    ]
}