Sites usage

Show usage and malicious rate per site

Sites usageとは何ですか?

Sites usageはCainによって開発されたChromeの拡張機能で、その主な機能は「Show usage and malicious rate per site」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Sites usage拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}