API Interceptor
Chrome extension that intercepts and modifies network requests
API Interceptorคืออะไร?
API Interceptor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anshul Nema และคุณลักษณะหลักของมันคือ "Chrome extension that intercepts and modifies network requests"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย API Interceptor
ดาวน์โหลดไฟล์ส่วนขยาย API Interceptor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
API Interceptor is a Chrome extension designed for developers and testers. It allows you to intercept and analyse network requests made by web pages. With API Interceptor, you can modify network requests, making it an invaluable tool for debugging and testing web applications Key features include: Real-time request interception Response/Schema analysis/modification using JSON Editor Mocking response using JSON Schema Faker Supplying own custom API response Response status modification Whether you're a web developer, quality assurance engineer, or just curious about what's happening under the hood of your favourite websites, API Interceptor can be your go-to tool For a particular request, you can -> *View Server Response*: Raw response for the request directly from the original server *View Server Schema*: Raw response schema *Customize Response*: Customize the original server response *Customize Schema*: Customize the resposne schema (to be used for generating fake response) *Generate Fake Response*: Generate fake response using the customized schema API Interceptor currently only requires these permissions - "storage", "debugger" "debugger" is required in order for response modification to work. "storage" is required to store the maintaining clientId ** Good To Know ** 1, You will see ["api-interceptor" started debugging this browser] message on the top when API Interceptor icon is clicked. This is because it uses the debugger API, which is needed for response modification. Due to Chrome's security policy (https://crbug.com/1096262), that banner would show up on all tabs even when a tab is not being modified, and it may still for a few more seconds after ModResponse is paused or disabled. To hide it, you can run chrome with --silent-debugger-extension-api command line switch. 2, Clicking on the "Cancel" button on the ["api-interceptor" started debugging this browser] message will stop intercepting requests going in the page. To reactivate it, click on the "Play" button in the extension popup For more visit - https://api-interceptor.com/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | API Interceptor |
ID | fjnajobamaheacabagbadcchpodflmgl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/api-interceptor/fjnajobamaheacabagbadcchpodflmgl |
คำอธิบาย | Chrome extension that intercepts and modifies network requests |
ขนาดไฟล์ | 2.4 MB |
จำนวนการติดตั้ง | 50 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2023-11-05 |
วันที่เผยแพร่ | 2023-11-05 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Anshul Nema |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://api-interceptor.com/ |
URL หน้าช่วยเหลือ | https://api-interceptor.com/faqs |
URL หน้านโยบายความเป็นส่วนตัว | https://api-interceptor.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "API Interceptor", "version": "0.0.1", "description": "Chrome extension that intercepts and modifies network requests", "background": { "service_worker": "src\/pages\/background\/index.js", "type": "module" }, "action": { "default_icon": "icon-50.png" }, "icons": { "128": "icon-200.png" }, "web_accessible_resources": [ { "resources": [ "assets\/js\/*.js", "assets\/css\/*.css", "icon-200.png", "icon-50.png" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "storage", "debugger", "activeTab" ] } |