Sites usage
Show usage and malicious rate per site
Cos'è Sites usage?
Sites usage è un'estensione di Chrome sviluppata da Cain, e la sua funzione principale è "Show usage and malicious rate per site".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sites usage
Scarica i file di estensione Sites usage in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Sites usage |
ID | aaoflgdgjlhdknnjedigeafknbaklgjd |
URL Ufficiale | https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd |
Descrizione | Show usage and malicious rate per site |
Dimensione del File | 937 KB |
Conteggio Installazioni | 24,501 |
Versione Corrente | 1.0.0.5 |
Ultimo Aggiornamento | 2022-11-29 |
Data di Pubblicazione | 2022-10-13 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | Cain |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://sites-usage.com/info |
Lingue Supportate | 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" } } |