Sites usage
Show usage and malicious rate per site
Sites usage là gì?
Sites usage là một tiện ích mở rộng Chrome được phát triển bởi Cain, và tính năng chính của nó là "Show usage and malicious rate per site".
Ả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 Sites usage
Tải xuống các tệp mở rộng Sites usage 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 extension collects usage statistics of the sites opened in the chrome browser instance and calculates maliciousness rating. The usage statistics present the number of requests sent from the browser and the aggregated size of responses received per visited site. The collected information is displayed in the extension’s popup window, accessible from extensions’ toolbar frame. Check out the website for more information about this extension. https://sites-usage.com/info This extension is open source and released under a GPL v3 License with some parts under MIT license.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Sites usage |
ID | aaoflgdgjlhdknnjedigeafknbaklgjd |
URL Chính Thức | https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd |
Mô tả | Show usage and malicious rate per site |
Kích Thước Tệp | 937 KB |
Số Lần Cài Đặt | 24,501 |
Phiên Bản Hiện Tại | 1.0.0.5 |
Cập Nhật Lần Cuối | 2022-11-29 |
Ngày Phát Hành | 2022-10-13 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Cain |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://sites-usage.com/info |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sites usage", "description": "Show usage and malicious rate per site", "version": "1.0.0.5", "manifest_version": 3, "background": { "service_worker": "js\/background.js" }, "permissions": [ "storage", "webRequest", "cookies" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-script.js" ] } ], "icons": { "48": "images\/icon128.png", "128": "images\/icon128.png" } } |