Network explorer

A DevTools extension to interpret network requests in real time within a friendly way.

Network explorer là gì?

Network explorer là một tiện ích mở rộng Chrome được phát triển bởi jacob.lea.dev, và tính năng chính của nó là "A DevTools extension to interpret network requests in real time within a friendly way.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Network explorer

Tải xuống các tệp mở rộng Network explorer 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

                        A DevTools extension to interpret network requests in real time within a friendly way.
Main functions:
1. Network requests could be manually / automatically loaded into the extension.
2. Users could define custom filters to load requests they want.
3. It could display these requests in a table.
4. It could transform headers and contents of requests/responses into JSON object and display them as tree-like structures. Currently version only supports pure JSON requests and dwr request.
5. In these tree-like structures, users could copy, download and search nodes.
6. Jsonlizable strings could be detected automatically and show up in popups.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Network explorer Network explorer
ID ejdnjekdoemmcaaaoofkijikbmcfpgfn
URL Chính Thức https://chromewebstore.google.com/detail/network-explorer/ejdnjekdoemmcaaaoofkijikbmcfpgfn
Mô tả A DevTools extension to interpret network requests in real time within a friendly way.
Kích Thước Tệp 223 KB
Số Lần Cài Đặt 203
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-04-04
Ngày Phát Hành 2021-05-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jacob.lea.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "2.0.0",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "minimum_chrome_version": "88.0",
    "icons": {
        "16": ".\/logos\/16.png",
        "32": ".\/logos\/32.png",
        "64": ".\/logos\/64.png",
        "128": ".\/logos\/128.png"
    },
    "permissions": [
        "clipboardWrite",
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "devtools_page": "devtools\/startup.html",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "sandbox": {
        "pages": [
            "sandbox\/eval.html"
        ]
    }
}