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.”。
扩展截图
下载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)
扩展基本信息
名称 | |
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" } } |