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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects profane/indecent images in the webpage and blurs them out. Doesn't access the user's data."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Safenet Browsing Experience एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |