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