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はpmthahirによって開発されたChromeの拡張機能で、その主な機能は「Detects profane/indecent images in the webpage and blurs them out. Doesn't access the user's data.」です。

拡張機能のスクリーンショット

screenshot

Safenet Browsing Experience拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}