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是由Parmesh Ashwath開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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 } |