netmonitor

shows network usage of webpages when the browser doesn't

Co to jest netmonitor?

netmonitor to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „shows network usage of webpages when the browser doesn't”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia netmonitor

Pobierz pliki rozszerzeń netmonitor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa netmonitor netmonitor
ID jekcpjegemgakiacfgiplacomhabclce
Oficjalny URL https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce
Opis shows network usage of webpages when the browser doesn't
Rozmiar pliku 92.13 KB
Liczba instalacji 963
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2016-07-09
Data Publikacji 2016-07-09
Ocena 3.63/5 Łącznie 16 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/awalGarg/netmonitor
Adres URL Strony Pomocy https://github.com/awalGarg/netmonitor/issues
Obsługiwane Języki 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"
    ]
}