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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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