Net logs

Extendable network logs debugger

Co je Net logs?

Net logs je rozšíření Chrome vyvinuté dg.danis.gumerov, a jeho hlavní funkcí je „Extendable network logs debugger“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Net logs

Stáhněte si soubory rozšíření Net logs ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Net logs Net logs
ID cjdmhjppaehhblekcplokfdhikmalnaf
Oficiální URL https://chromewebstore.google.com/detail/net-logs/cjdmhjppaehhblekcplokfdhikmalnaf
Popis Extendable network logs debugger
Velikost souboru 322 KB
Počet instalací 141
Aktuální Verze 1.0.0
Poslední Aktualizace 2024-03-03
Datum Vydání 2021-04-25
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář dg.danis.gumerov
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Artboomy/netlogs
URL Stránky Nápovědy https://github.com/Artboomy/netlogs/issues
Podporované Jazyky 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}