Safenet Browsing Experience

Detects profane/indecent images in the webpage and blurs them out. Doesn't access the user's data.

Τι είναι το Safenet Browsing Experience;

Το Safenet Browsing Experience είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pmthahir, και η κύρια λειτουργία του είναι "Detects profane/indecent images in the webpage and blurs them out. Doesn't access the user's data.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Safenet Browsing Experience

Λήψη αρχείων επέκτασης Safenet Browsing Experience σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The Plugin runs Machine Learning models on both image and text to detect inappropriate images and blurs them out. The models run on the browser itself. (Plugin is in beta mode and is not fully accurate)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Safenet Browsing Experience Safenet Browsing Experience
ID hphfiglihnbclkgcmbgfoaahjkighbei
Επίσημο URL https://chromewebstore.google.com/detail/safenet-browsing-experien/hphfiglihnbclkgcmbgfoaahjkighbei
Περιγραφή Detects profane/indecent images in the webpage and blurs them out. Doesn't access the user's data.
Μέγεθος Αρχείου 6.06 MB
Αριθμός Εγκαταστάσεων 119
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2021-03-17
Ημερομηνία Δημοσίευσης 2021-03-17
Αξιολόγηση 4.89/5 Συνολικά 28 Αξιολογήσεις
Προγραμματιστής pmthahir
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safenet Browsing Experience",
    "version": "1.2",
    "description": "Detects profane\/indecent images in the webpage and blurs them out. Doesn't access the user's data.",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "library\/Images\/shield_green128.png",
        "default_popup": "library\/popup\/popup.html"
    },
    "background": {
        "scripts": [
            "library\/tf.js",
            "background.js"
        ]
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "library\/jquery-3.5.1.min.js",
                "content.js"
            ],
            "css": [
                "\/library\/ImageBlockerContent\/esload.css"
            ],
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webRequest",
        "webNavigation",
        "notifications"
    ],
    "icons": {
        "16": "library\/Images\/shield_green16.png",
        "32": "library\/Images\/shield_green32.png",
        "48": "library\/Images\/shield_green48.png",
        "64": "library\/Images\/shield_green64.png",
        "128": "library\/Images\/shield_green128.png",
        "256": "library\/Images\/shield_green256.png"
    }
}