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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}