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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة API Trace

قم بتنزيل ملفات الامتداد API Trace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}