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