Sites usage
Show usage and malicious rate per site
O que é Sites usage?
Sites usage é uma extensão do Chrome desenvolvida por Cain, e sua principal característica é "Show usage and malicious rate per site".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sites usage
Baixe arquivos de extensão Sites usage no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Sites usage |
ID | aaoflgdgjlhdknnjedigeafknbaklgjd |
URL Oficial | https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd |
Descrição | Show usage and malicious rate per site |
Tamanho do Arquivo | 937 KB |
Contagem de Instalações | 24,501 |
Versão Atual | 1.0.0.5 |
Última Atualização | 2022-11-29 |
Data de Publicação | 2022-10-13 |
Classificação | 4.50/5 Total de 4 Avaliações |
Desenvolvedor | Cain |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://sites-usage.com/info |
Idiomas Suportados | 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" } } |