Sites usage

Show usage and malicious rate per site

Vad är Sites usage?

Sites usage är en Chrome-tillägg utvecklad av Cain, och dess huvudfunktion är "Show usage and malicious rate per site".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Sites usage-förlängningens CRX-fil

Ladda ner Sites usage-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sites usage Sites usage
ID aaoflgdgjlhdknnjedigeafknbaklgjd
Officiell webbadress https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd
Beskrivning Show usage and malicious rate per site
Filstorlek 937 KB
Antal Installationer 24,501
Aktuell Version 1.0.0.5
Senast Uppdaterad 2022-11-29
Publiceringsdatum 2022-10-13
Betyg 4.50/5 Totalt 4 Betyg
Utvecklare Cain
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://sites-usage.com/info
Stödda Språk 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"
    }
}