Sites usage

Show usage and malicious rate per site

What is Sites usage?

Sites usage is a Chrome extension developed by Cain, and its main feature is "Show usage and malicious rate per site".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Sites usage Extension CRX File

Download Sites usage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Sites usage Sites usage
ID aaoflgdgjlhdknnjedigeafknbaklgjd
Official URL https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd
Description Show usage and malicious rate per site
File Size 937 KB
Installation Count 24,501
Current Version 1.0.0.5
Last Updated 2022-11-29
Publish Date 2022-10-13
Rating 4.50/5 Total 4 Ratings
Developer Cain
Email [email protected]
Payment Type free
Extension Website https://sites-usage.com/info
Supported Languages 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"
    }
}