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
官方網址 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"
    ]
}