Inspect API calls

Inspect API calls extension

Co je Inspect API calls?

Inspect API calls je rozšíření Chrome vyvinuté matteopieroni, a jeho hlavní funkcí je „Inspect API calls extension“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Inspect API calls

Stáhněte si soubory rozšíření Inspect API calls ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Using this extension you can inspect the API calls made by the website you open.

It shows information regarding: url, duration, method (GET, POST, PATCH, PUT, DELETE), status (success, pending, error).
You can filter searching a string in a url, order the data, visualise duplicate, insecure or error calls.

The code for this extension is open sourced and you can see it on Github: https://github.com/MatteoPieroni/inspect-api-extension.
To request a new feature, please open an issue in the github repo: https://github.com/MatteoPieroni/inspect-api-extension/issues                    

Základní Informace o Rozšíření

Název Inspect API calls Inspect API calls
ID peblgjafllfpndniijaemianngmokbcf
Oficiální URL https://chromewebstore.google.com/detail/inspect-api-calls/peblgjafllfpndniijaemianngmokbcf
Popis Inspect API calls extension
Velikost souboru 58.93 KB
Počet instalací 1,955
Aktuální Verze 0.2.0
Poslední Aktualizace 2020-04-30
Datum Vydání 2020-04-28
Vývojář matteopieroni
Typ Platby free
Webové stránky Rozšíření https://github.com/MatteoPieroni/inspect-api-extension
URL Stránky Nápovědy https://github.com/MatteoPieroni/inspect-api-extension/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inspect API calls",
    "description": "Inspect API calls extension",
    "version": "0.2.0",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "Icon48.png",
        "128": "Icon128.png"
    },
    "permissions": [
        "webRequest",
        "webNavigation",
        ""
    ]
}