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

API Trace क्या है?

API Trace Parmesh Ashwath द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में API Trace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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].                    

एक्सटेंशन की मूल जानकारी

नाम API Trace API Trace
ID amnplbchpnilohkojmodepiappjhaehi
आधिकारिक URL https://chromewebstore.google.com/detail/api-trace/amnplbchpnilohkojmodepiappjhaehi
विवरण This extension gives the consolidated view of all requests made by a web page. View includes request body and also the API response
फ़ाइल का आकार 43.22 KB
स्थापना संख्या 3,172
वर्तमान संस्करण 1.1
अंतिम अपडेट 2019-07-16
प्रकाशन तिथि 2019-07-16
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Parmesh Ashwath
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}