Net logs

Extendable network logs debugger

Cos'è Net logs?

Net logs è un'estensione di Chrome sviluppata da dg.danis.gumerov, e la sua funzione principale è "Extendable network logs debugger".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Net logs

Scarica i file di estensione Net logs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Net logs Net logs
ID cjdmhjppaehhblekcplokfdhikmalnaf
URL Ufficiale https://chromewebstore.google.com/detail/net-logs/cjdmhjppaehhblekcplokfdhikmalnaf
Descrizione Extendable network logs debugger
Dimensione del File 322 KB
Conteggio Installazioni 141
Versione Corrente 1.0.0
Ultimo Aggiornamento 2024-03-03
Data di Pubblicazione 2021-04-25
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore dg.danis.gumerov
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Artboomy/netlogs
URL della Pagina di Aiuto https://github.com/Artboomy/netlogs/issues
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}