XHR Request Interceptor
Redirect XHR requests and change their headers
XHR Request Interceptorคืออะไร?
XHR Request Interceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gabriel.annell และคุณลักษณะหลักของมันคือ "Redirect XHR requests and change their headers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XHR Request Interceptor
ดาวน์โหลดไฟล์ส่วนขยาย XHR Request Interceptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Redirect XHR requests and modify headers from any front-end application to wherever you want! Easy to use interface and supports regex (RE2). Especially useful for full-stack devs: Redirect from any environment to test your back-end developments.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | XHR Request Interceptor |
ID | mkmcbagfkbbbkdcapjmaghhgbenmielk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk |
คำอธิบาย | Redirect XHR requests and change their headers |
ขนาดไฟล์ | 574 KB |
จำนวนการติดตั้ง | 101 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-05-12 |
วันที่เผยแพร่ | 2022-03-22 |
ผู้พัฒนา | gabriel.annell |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/LGabAnnell/xhr-request-interceptor |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "XHR Request Interceptor", "description": "Redirect XHR requests and change their headers", "version": "1.0.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Edit rules" }, "permissions": [ "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |