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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}