Rest API Inspector

This will inspect all the REST API calls and download the API URL along with payload and request details

Rest API Inspector là gì?

Rest API Inspector là một tiện ích mở rộng Chrome được phát triển bởi dassum, và tính năng chính của nó là "This will inspect all the REST API calls and download the API URL along with payload and request details".

Ả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 Rest API Inspector

Tải xuống các tệp mở rộng Rest API Inspector 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

                        REST API Inspector is a Chrome Extension, which helps you inspect all the REST API calls made by any website. Instead of using the Inspect mode of Google Chrome to manually check the REST API calls made by any website, this extension allows a ready visual access. This extension has the below features:

1. A Ready List: Get all the REST API calls made by any website
2. Time Taken: Note the time taken by each REST API call
3. Status: See the Pending, Complete or Error status of each REST API call
4. API Details: Understand the request content of the REST API call
5. Download: Download the REST API call content for testing or validation
6. Search: Have an option to search the required API from the list                    

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

Tên Rest API Inspector Rest API Inspector
ID lmhkmmkefopogbadhkfcaccjnaihajbh
URL Chính Thức https://chromewebstore.google.com/detail/rest-api-inspector/lmhkmmkefopogbadhkfcaccjnaihajbh
Mô tả This will inspect all the REST API calls and download the API URL along with payload and request details
Kích Thước Tệp 365 KB
Số Lần Cài Đặt 1,555
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-08-19
Ngày Phát Hành 2021-08-18
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển dassum
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": "Rest API Inspector",
    "description": "This will inspect all the REST API calls and download the API URL along with payload and request details",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Rest API Inspector",
        "default_popup": "popup.html"
    }
}