Net logs

Extendable network logs debugger

Net logsとは何ですか?

Net logsはdg.danis.gumerovによって開発されたChromeの拡張機能で、その主な機能は「Extendable network logs debugger」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Net logs拡張機能のCRXファイルをダウンロード

Net logs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is extendable network request viewer extension for Chromium-based browsers.

You can change the way you view parameters and results the way you want, using plain JavaScript.

The extension will appear in Devtools as a "📜 Net logs" tab.

Features:

* 🔍 Search: Filter by ULR and search by params/result.
* ⛰️ Integration: View Next.js & NuxtJS hydration state.
* 🎨 Presets: GraphQL & JSON-RPC protocols unpacking.
* 🛠️ Customization: Transform name, parameters, and response with JavaScript.
* ✨ Universal: View live logs or load from HAR/*.netlogs.zip file.
* 🤝 Team-friendly: Export logs and share them with others.

Source code and extensive readme can be found at:
https://github.com/Artboomy/netlogs                    

拡張機能の基本情報

名前 Net logs Net logs
ID cjdmhjppaehhblekcplokfdhikmalnaf
公式URL https://chromewebstore.google.com/detail/net-logs/cjdmhjppaehhblekcplokfdhikmalnaf
説明 Extendable network logs debugger
ファイルサイズ 322 KB
インストール数 141
現在のバージョン 1.0.0
最終更新日 2024-03-03
公開日 2021-04-25
評価 5.00/5 合計 5 レビュー
開発者 dg.danis.gumerov
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Artboomy/netlogs
ヘルプページのURL https://github.com/Artboomy/netlogs/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Net logs",
    "version": "1.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "description": "Extendable network logs debugger",
    "devtools_page": "devtools.html",
    "author": "artboomy",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "sandbox": {
        "pages": [
            "sandbox.html",
            "sandboxSettings.html"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/github.com\/Artboomy\/netlogs",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}