netmonitor
shows network usage of webpages when the browser doesn't
netmonitor là gì?
netmonitor là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "shows network usage of webpages when the browser doesn't".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng netmonitor
Tải xuống các tệp mở rộng netmonitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | netmonitor |
ID | jekcpjegemgakiacfgiplacomhabclce |
URL Chính Thức | https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce |
Mô tả | shows network usage of webpages when the browser doesn't |
Kích Thước Tệp | 92.13 KB |
Số Lần Cài Đặt | 963 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2016-07-09 |
Ngày Phát Hành | 2016-07-09 |
Đánh Giá | 3.63/5 Tổng số 16 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/awalGarg/netmonitor |
URL Trang Trợ Giúp | https://github.com/awalGarg/netmonitor/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |