Sites usage

Show usage and malicious rate per site

Что такое Sites usage?

Sites usage - это расширение Chrome, разработанное Cain, и его основная функция - "Show usage and malicious rate per site".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Sites usage

Скачайте файлы расширений Sites usage в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Sites usage Sites usage
ID aaoflgdgjlhdknnjedigeafknbaklgjd
Официальный URL https://chromewebstore.google.com/detail/sites-usage/aaoflgdgjlhdknnjedigeafknbaklgjd
Описание Show usage and malicious rate per site
Размер файла 937 KB
Количество установок 24,501
Текущая Версия 1.0.0.5
Последнее Обновление 2022-11-29
Дата публикации 2022-10-13
Рейтинг 4.50/5 Всего 4 оценок
Разработчик Cain
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://sites-usage.com/info
Поддерживаемые языки 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"
    }
}