API Trace

This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response

Was ist API Trace?

API Trace ist eine Chrome-Erweiterung, die von Parmesh Ashwath entwickelt wurde, und ihr Hauptmerkmal ist "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response".

Erweiterungsscreenshots

screenshot

API Trace-Erweiterungs-CRX-Datei herunterladen

Laden Sie API Trace-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        There are many Chrome extension to monitor HTTP requests from AJAX calls, but many would capture only the request and not the response. Even though Chrome DevTools has the network tab, it is hard to get a consolidated view of all the requests and also the filtering capability there is limited to the URI end points, but it is often required to search based on the request body or the API response. To Address this, we have developed a Chrome extension. The data displayed can also serve as a high-level documentation for your API

I had fun creating this Chrome Extension, so I hope you enjoy using it. As always, for any feature requests or issues when using the extension, just let me know  by emailing me [email protected].                    

Grundlegende Informationen zur Erweiterung

Name API Trace API Trace
ID amnplbchpnilohkojmodepiappjhaehi
Offizielle URL https://chromewebstore.google.com/detail/api-trace/amnplbchpnilohkojmodepiappjhaehi
Beschreibung This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response
Dateigröße 43.22 KB
Installationsanzahl 3,172
Aktuelle Version 1.1
Letztes Update 2019-07-16
Veröffentlichungsdatum 2019-07-16
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Parmesh Ashwath
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "API Trace",
    "description": "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "debugger"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "API Trace"
    },
    "manifest_version": 2
}