Sites usage

Show usage and malicious rate per site

Qu'est-ce que Sites usage ?

Sites usage est une extension Chrome développée par Cain, et sa fonction principale est "Show usage and malicious rate per site".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Sites usage

Téléchargez les fichiers d'extension Sites usage au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sites usage Sites usage
ID aaoflgdgjlhdknnjedigeafknbaklgjd
URL Officiel https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd
Description Show usage and malicious rate per site
Taille du Fichier 937 KB
Nombre d'Installations 24,501
Version Actuelle 1.0.0.5
Dernière Mise à Jour 2022-11-29
Date de Publication 2022-10-13
Évaluation 4.50/5 Total 4 Évaluations
Développeur Cain
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sites-usage.com/info
Langues Prises en Charge 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"
    }
}