Netmon

Network monitor - view the HTTP headers of the current page, or globally, from all tabs.

Cos'è Netmon?

Netmon è un'estensione di Chrome sviluppata da https://kpion.github.io, e la sua funzione principale è "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Netmon

Scarica i file di estensione Netmon 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

                        Network monitor - see requests and responses, including the HTTP headers, of the current page, or globally. 

You can use it at any time, also *after* the page has loaded.

This is useful when there are random errors in some cases and you just want to see what happened, list the past requests. 

It also constantly displays current count of requests in any given tab.

And - it's open source: https://github.com/kpion/netmon

If you have any suggestions, please don't hesitate to reach me on [email protected] or file an issue on the github page above.                    

Informazioni di Base sull'Estensione

Nome Netmon Netmon
ID fnbdjaofejpjedhleannakpdpifmchlo
URL Ufficiale https://chrome.google.com/webstore/detail/netmon/fnbdjaofejpjedhleannakpdpifmchlo
Descrizione Network monitor - view the HTTP headers of the current page, or globally, from all tabs.
Dimensione del File 1.7 MB
Conteggio Installazioni 314
Versione Corrente 1.0
Ultimo Aggiornamento 2019-05-11
Data di Pubblicazione 2019-05-05
Sviluppatore https://kpion.github.io
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kpion/netmon
URL della Pagina di Aiuto https://github.com/kpion/netmon
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netmon",
    "version": "1.0",
    "description": "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.",
    "homepage_url": "https:\/\/github.com\/kpion\/netmon",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "page": "background\/index.html"
    },
    "browser_action": {
        "default_popup": "modules\/list\/index.html?mode=popup",
        "default_icon": {
            "16": "static\/images\/extension-icon.png",
            "32": "static\/images\/extension-icon.png",
            "48": "static\/images\/extension-icon.png",
            "128": "static\/images\/extension-icon.png"
        }
    },
    "icons": {
        "16": "static\/images\/extension-icon.png",
        "32": "static\/images\/extension-icon.png",
        "48": "static\/images\/extension-icon.png",
        "128": "static\/images\/extension-icon.png"
    },
    "manifest_version": 2
}