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 |
公式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 |
Eメール | [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 } |