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
官方網址 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"
    }
}