Request Interceptor

Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.

Request Interceptorคืออะไร?

Request Interceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vinay Kaparthi และคุณลักษณะหลักของมันคือ "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params."

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

screenshot
screenshot

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

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

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

                        This extension helps in building rules(conditions) which when met will help in 

1. redirect/block http requests
2. throttle response of static resources
3. add/modify/delete request/response http headers
4. add/modify/delete http query parameters                    

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

ชื่อ Request Interceptor Request Interceptor
ID bfgblailifedppfilabonohepkofbkpm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm
คำอธิบาย Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
ขนาดไฟล์ 1.89 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.6.0
อัปเดตครั้งล่าสุด 2023-10-23
วันที่เผยแพร่ 2020-06-01
คะแนน 4.05/5 รวมทั้งหมด 55 คะแนน
ผู้พัฒนา Vinay Kaparthi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "author": "Vinay Kumar Kaparthi",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "images\/logo_64.png"
        },
        "default_title": "Request Interceptor"
    },
    "description": "Intercept Requests and add custom rules to modify request\/response headers, block\/redirect requests, modify query params.",
    "icons": {
        "128": "images\/logo_128.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "64": "images\/logo_64.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "name": "Request Interceptor",
    "options_page": "index.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.6.0",
    "content_security_policy": "style-src-elem 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com\/css blob:;style-src 'self' 'unsafe-inline';"
}