Network explorer

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

什么是Network explorer?

Network explorer是由jacob.lea.dev开发的Chrome扩展程序,该扩展的主要功能是“A DevTools extension to interpret network requests in real time within a friendly way.”。

扩展截图

screenshot
screenshot
screenshot

下载Network explorer扩展crx文件

下载Network explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Network explorer Network explorer
ID ejdnjekdoemmcaaaoofkijikbmcfpgfn
官方URL https://chromewebstore.google.com/detail/network-explorer/ejdnjekdoemmcaaaoofkijikbmcfpgfn
简介 A DevTools extension to interpret network requests in real time within a friendly way.
文件大小 223 KB
安装次数 203
当前版本 2.0.0
更新时间 2022-04-04
上架时间 2021-05-05
评分 5.00/5 共1次评分
开发者 jacob.lea.dev
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        ]
    }
}