netmonitor

shows network usage of webpages when the browser doesn't

什么是netmonitor?

netmonitor是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“shows network usage of webpages when the browser doesn't”。

扩展截图

screenshot

下载netmonitor扩展crx文件

下载netmonitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The "loading" icon for tabs in browsers only spins at first when the page is loaded. But even after that, web pages can do network IO via JavaScript in background without the user knowing. This extension highlights such network activity and shows a count of requests done till now by the page in a small indicator. It's updated in real-time for each tab.

A lot of web pages use background network requests for tracking user actions and sending data to remote servers, lazily loading heavy assets etc., and all that goes unnoticed by the user. Ideally, the browser's "loading icon" should spin for those requests as well.

Uploaded to my account by request of the author.  Go star his GitHub project here: https://github.com/awalGarg/netmonitor                    

扩展基本信息

名称 netmonitor netmonitor
ID jekcpjegemgakiacfgiplacomhabclce
官方URL https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce
简介 shows network usage of webpages when the browser doesn't
文件大小 92.13 KB
安装次数 963
当前版本 0.0.4
更新时间 2016-07-09
上架时间 2016-07-09
评分 3.63/5 共16次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/awalGarg/netmonitor
帮助页面URL https://github.com/awalGarg/netmonitor/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "netmonitor",
    "description": "shows network usage of webpages when the browser doesn't",
    "version": "0.0.4",
    "background": {
        "scripts": [
            "static\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "static\/off.png",
        "default_popup": "static\/popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "static\/off.png",
        "static\/on.gif"
    ]
}