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"
    ]
}