Sites usage
Show usage and malicious rate per site
Sites usageคืออะไร?
Sites usage เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cain และคุณลักษณะหลักของมันคือ "Show usage and malicious rate per site"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } } |