Netmon

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

What is Netmon?

Netmon is a Chrome extension developed by https://kpion.github.io, and its main feature is "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.".

Extension Screenshots

screenshot

Download Netmon Extension CRX File

Download Netmon 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

                        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.                    

Extension Basic Information

Name Netmon Netmon
ID fnbdjaofejpjedhleannakpdpifmchlo
Official URL https://chrome.google.com/webstore/detail/netmon/fnbdjaofejpjedhleannakpdpifmchlo
Description Network monitor - view the HTTP headers of the current page, or globally, from all tabs.
File Size 1.7 MB
Installation Count 314
Current Version 1.0
Last Updated 2019-05-11
Publish Date 2019-05-05
Developer https://kpion.github.io
Email [email protected]
Payment Type free
Extension Website https://github.com/kpion/netmon
Help Page URL https://github.com/kpion/netmon
Supported Languages 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
}