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?

Rest API Inspector是由dassum開發的Chrome擴展程式,該擴展的主要功能是“This will inspect all the REST API calls and download the API URL along with payload and request details”。

擴展截圖

screenshot

下載Rest API Inspector擴展crx文件

下載Rest API Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Rest API Inspector Rest API Inspector
ID lmhkmmkefopogbadhkfcaccjnaihajbh
官方網址 https://chromewebstore.google.com/detail/rest-api-inspector/lmhkmmkefopogbadhkfcaccjnaihajbh
簡介 This will inspect all the REST API calls and download the API URL along with payload and request details
檔案大小 365 KB
安裝次數 1,555
目前版本 1.0
更新時間 2021-08-19
上架時間 2021-08-18
評分 4.33/5 共 6 次評分
開發者 dassum
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}