TAG Image Filter
TAG Image Filter -- filters body images by replacing colors
TAG Image Filterคืออะไร?
TAG Image Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TAG Flatbush และคุณลักษณะหลักของมันคือ "TAG Image Filter -- filters body images by replacing colors"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TAG Image Filter
ดาวน์โหลดไฟล์ส่วนขยาย TAG Image Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } } |