Inspect API calls

Inspect API calls extension

Inspect API callsคืออะไร?

Inspect API calls เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matteopieroni และคุณลักษณะหลักของมันคือ "Inspect API calls extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Inspect API calls

ดาวน์โหลดไฟล์ส่วนขยาย Inspect API calls ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Inspect API calls Inspect API calls
ID peblgjafllfpndniijaemianngmokbcf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inspect-api-calls/peblgjafllfpndniijaemianngmokbcf
คำอธิบาย Inspect API calls extension
ขนาดไฟล์ 58.93 KB
จำนวนการติดตั้ง 1,955
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2020-04-30
วันที่เผยแพร่ 2020-04-28
ผู้พัฒนา matteopieroni
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MatteoPieroni/inspect-api-extension
URL หน้าช่วยเหลือ https://github.com/MatteoPieroni/inspect-api-extension/issues
ภาษาที่รองรับ 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",
        ""
    ]
}