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
Eメール [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"
        ]
    }
}