Rest API Inspector

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

Hvad er Rest API Inspector?

Rest API Inspector er en Chrome-udvidelse udviklet af dassum, og dens hovedfunktion er "This will inspect all the REST API calls and download the API URL along with payload and request details".

Udvidelsesskærmbilleder

screenshot

Download Rest API Inspector-udvidelses-CRX-fil

Download Rest API Inspector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Rest API Inspector Rest API Inspector
ID lmhkmmkefopogbadhkfcaccjnaihajbh
Officiel URL https://chromewebstore.google.com/detail/rest-api-inspector/lmhkmmkefopogbadhkfcaccjnaihajbh
Beskrivelse This will inspect all the REST API calls and download the API URL along with payload and request details
Filstørrelse 365 KB
Antal Installationer 1,555
Nuværende Version 1.0
Senest Opdateret 2021-08-19
Udgivelsesdato 2021-08-18
Bedømmelse 4.33/5 Samlet 6 Bedømmelser
Udvikler dassum
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}