Inspect API calls
Inspect API calls extension
Inspect API calls là gì?
Inspect API calls là một tiện ích mở rộng Chrome được phát triển bởi matteopieroni, và tính năng chính của nó là "Inspect API calls extension".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Inspect API calls
Tải xuống các tệp mở rộng Inspect API calls dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Inspect API calls |
ID | peblgjafllfpndniijaemianngmokbcf |
URL Chính Thức | https://chromewebstore.google.com/detail/inspect-api-calls/peblgjafllfpndniijaemianngmokbcf |
Mô tả | Inspect API calls extension |
Kích Thước Tệp | 58.93 KB |
Số Lần Cài Đặt | 1,955 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2020-04-30 |
Ngày Phát Hành | 2020-04-28 |
Nhà Phát Triển | matteopieroni |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/MatteoPieroni/inspect-api-extension |
URL Trang Trợ Giúp | https://github.com/MatteoPieroni/inspect-api-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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", " |