Netmon

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

O que é Netmon?

Netmon é uma extensão do Chrome desenvolvida por https://kpion.github.io, e sua principal característica é "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Netmon

Baixe arquivos de extensão Netmon no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Netmon Netmon
ID fnbdjaofejpjedhleannakpdpifmchlo
URL Oficial https://chrome.google.com/webstore/detail/netmon/fnbdjaofejpjedhleannakpdpifmchlo
Descrição Network monitor - view the HTTP headers of the current page, or globally, from all tabs.
Tamanho do Arquivo 1.7 MB
Contagem de Instalações 314
Versão Atual 1.0
Última Atualização 2019-05-11
Data de Publicação 2019-05-05
Desenvolvedor https://kpion.github.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kpion/netmon
URL da Página de Ajuda https://github.com/kpion/netmon
Idiomas Suportados 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
}