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 là gì?

API Trace là một tiện ích mở rộng Chrome được phát triển bởi Parmesh Ashwath, và tính năng chính của nó là "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng API Trace

Tải xuống các tệp mở rộng API Trace dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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].                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên API Trace API Trace
ID amnplbchpnilohkojmodepiappjhaehi
URL Chính Thức https://chromewebstore.google.com/detail/api-trace/amnplbchpnilohkojmodepiappjhaehi
Mô tả This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response
Kích Thước Tệp 43.22 KB
Số Lần Cài Đặt 3,172
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-07-16
Ngày Phát Hành 2019-07-16
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Parmesh Ashwath
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}