Sites usage
Show usage and malicious rate per site
什么是Sites usage?
Sites usage是由Cain开发的Chrome扩展程序,该扩展的主要功能是“Show usage and malicious rate per site”。
扩展截图
下载Sites usage扩展crx文件
下载Sites usage扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Sites usage |
ID | aaoflgdgjlhdknnjedigeafknbaklgjd |
官方URL | https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd |
简介 | Show usage and malicious rate per site |
文件大小 | 937 KB |
安装次数 | 24,501 |
当前版本 | 1.0.0.5 |
更新时间 | 2022-11-29 |
上架时间 | 2022-10-13 |
评分 | 4.50/5 共4次评分 |
开发者 | Cain |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://sites-usage.com/info |
支持的语言 | 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" } } |