TAG Image Filter
TAG Image Filter -- filters body images by replacing colors
TAG Image Filter क्या है?
TAG Image Filter TAG Flatbush द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "TAG Image Filter -- filters body images by replacing colors"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TAG Image Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The TAG Image Filter blocks out skin color when it senses any skin colors in an image. This way you can surf safely without accidentally seeing any adult images and not modest pictures. *Comments and Feedback* • We regularly monitor this google form, for your comments and feedback https://forms.gle/XeepEpexzu8tWTr26 Always on (Default) - • By default the filter is on for every website. Use the options to enable/disable different filter features. Note that filters currently do not wok on IFrame contents (embedded content from third parties, such as ads). You can select to hide all IFrames in the options, but this may cause issues with some normal website functionality (e.g. captcha). *Warnings* • This is not a replacement for an internet filter and should not be relied upon. It is only to provide you with an extra level of protection or for situations where you don’t have the option of installing a filter, such as your office computer. • Flash will not be blocked by the filter; you will also have to set Flash not to run automatically. To back Flash, type chrome://settings/content in the address bar, scroll down to the 'Plug-ins' section, and select 'Click to play'. • Videos will not be blocked by the filter. *Our mission* • Our mission is to help people surf safely, especially where a regular internet filter is not an option. • The extension will update itself automatically as we improve it and will always be 100% free. • This filter is donated for the hatzlacha of Moshe ben Ruth, and family. • This filter is donated for the Refuah Shelemah of Moshe Ben Chana by the Setton Family. • This filter is donated in memory of Elan Ganeles by the Simhon Family.
एक्सटेंशन की मूल जानकारी
नाम | TAG Image Filter |
ID | pjdabogckbepcemfdiigdkncfekikpki |
आधिकारिक URL | https://chromewebstore.google.com/detail/tag-image-filter/pjdabogckbepcemfdiigdkncfekikpki |
विवरण | TAG Image Filter -- filters body images by replacing colors |
फ़ाइल का आकार | 568 KB |
स्थापना संख्या | 1,159 |
वर्तमान संस्करण | 5.0 |
अंतिम अपडेट | 2023-07-31 |
प्रकाशन तिथि | 2019-01-08 |
रेटिंग | 4.44/5 कुल 9 रेटिंग्स |
डेवलपर | TAG Flatbush |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://tagflatbush.com/ |
सहायता पृष्ठ URL | https://forms.gle/XeepEpexzu8tWTr26 |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TAG Image Filter", "description": "TAG Image Filter -- filters body images by replacing colors", "version": "5.0", "icons": { "16": "icon.jpeg", "48": "icon.jpeg", "128": "icon.jpeg" }, "permissions": [ "offscreen", "storage" ], "action": { "default_title": "TAG Image Filter", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "hide.css" ], "js": [ "content_script.js" ], "run_at": "document_end", "all_frames": false } ], "background": { "service_worker": "service_worker.js" } } |