API Trace
This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response
API Traceคืออะไร?
API Trace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Parmesh Ashwath และคุณลักษณะหลักของมันคือ "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย API Trace
ดาวน์โหลดไฟล์ส่วนขยาย API Trace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
There are many Chrome extension to monitor HTTP requests from AJAX calls, but many would capture only the request and not the response. Even though Chrome DevTools has the network tab, it is hard to get a consolidated view of all the requests and also the filtering capability there is limited to the URI end points, but it is often required to search based on the request body or the API response. To Address this, we have developed a Chrome extension. The data displayed can also serve as a high-level documentation for your API I had fun creating this Chrome Extension, so I hope you enjoy using it. As always, for any feature requests or issues when using the extension, just let me know by emailing me [email protected].
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | API Trace |
ID | amnplbchpnilohkojmodepiappjhaehi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/api-trace/amnplbchpnilohkojmodepiappjhaehi |
คำอธิบาย | This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response |
ขนาดไฟล์ | 43.22 KB |
จำนวนการติดตั้ง | 3,172 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2019-07-16 |
วันที่เผยแพร่ | 2019-07-16 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Parmesh Ashwath |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "API Trace", "description": "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "debugger" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon16.png", "default_title": "API Trace" }, "manifest_version": 2 } |