Sites usage
Show usage and malicious rate per site
Co je Sites usage?
Sites usage je rozšíření Chrome vyvinuté Cain, a jeho hlavní funkcí je „Show usage and malicious rate per site“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sites usage
Stáhněte si soubory rozšíření Sites usage ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Sites usage |
ID | aaoflgdgjlhdknnjedigeafknbaklgjd |
Oficiální URL | https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd |
Popis | Show usage and malicious rate per site |
Velikost souboru | 937 KB |
Počet instalací | 24,501 |
Aktuální Verze | 1.0.0.5 |
Poslední Aktualizace | 2022-11-29 |
Datum Vydání | 2022-10-13 |
Hodnocení | 4.50/5 Celkem 4 Hodnocení |
Vývojář | Cain |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://sites-usage.com/info |
Podporované Jazyky | 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" } } |