netmonitor
shows network usage of webpages when the browser doesn't
¿Qué es netmonitor?
netmonitor es una extensión de Chrome desarrollada por Unknown, y su función principal es "shows network usage of webpages when the browser doesn't".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión netmonitor
Descarga archivos de extensión netmonitor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | netmonitor |
ID | jekcpjegemgakiacfgiplacomhabclce |
URL Oficial | https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce |
Descripción | shows network usage of webpages when the browser doesn't |
Tamaño del Archivo | 92.13 KB |
Cantidad de Instalaciones | 963 |
Versión Actual | 0.0.4 |
Última Actualización | 2016-07-09 |
Fecha de Publicación | 2016-07-09 |
Calificación | 3.63/5 Total de 16 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/awalGarg/netmonitor |
URL de la Página de Ayuda | https://github.com/awalGarg/netmonitor/issues |
Idiomas Soportados | 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" ] } |