Net logs

Extendable network logs debugger

What is Net logs?

Net logs is a Chrome extension developed by dg.danis.gumerov, and its main feature is "Extendable network logs debugger".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Net logs Extension CRX File

Download Net logs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Net logs Net logs
ID cjdmhjppaehhblekcplokfdhikmalnaf
Official URL https://chromewebstore.google.com/detail/net-logs/cjdmhjppaehhblekcplokfdhikmalnaf
Description Extendable network logs debugger
File Size 322 KB
Installation Count 141
Current Version 1.0.0
Last Updated 2024-03-03
Publish Date 2021-04-25
Rating 5.00/5 Total 5 Ratings
Developer dg.danis.gumerov
Email [email protected]
Payment Type free
Extension Website https://github.com/Artboomy/netlogs
Help Page URL https://github.com/Artboomy/netlogs/issues
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}