Naughty Language Filter
Filters out obscene words on webpages and optionally mutes profanity on Netflix.
Naughty Language Filterคืออะไร?
Naughty Language Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thedevcaleb และคุณลักษณะหลักของมันคือ "Filters out obscene words on webpages and optionally mutes profanity on Netflix."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Naughty Language Filter
ดาวน์โหลดไฟล์ส่วนขยาย Naughty Language Filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This "Naughty Language Filter" filters out obscene text on webpages and even has the additional feature of muting profanity in Netflix (by utilizing Netflix's subtitles). Essentially, a profanity filter that purifies your window into the internet, one word at a time! ● Designed to have virtually no negative impact on performance. ● The built-in bad word list contains most all words that would be considered as "bad words". ● The Netflix video muting works by processing Netflix's subtitles (subtitles must be turned on within Netflix for this to work, but the extension will hide the subtitles via magic!). The Netflix video muting will not be perfect because it is directly dependent on the subtitles being accurate and timely. ● Words can be added or deleted from the profanity word list as desired. ● Profanity filtering can be turned off on a per-website basis. ● Customize how words will be filtered (e.g. will it look like *****, or l----, or FILTERED). You choose! The obscene text filtering works with essentially any webpage: Reddit, Youtube, Soundcloud, Google, Facebook, ... basically any website!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Naughty Language Filter |
ID | mlhblfcjgnoohcjkcmighdibcnaifmgo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/naughty-language-filter/mlhblfcjgnoohcjkcmighdibcnaifmgo |
คำอธิบาย | Filters out obscene words on webpages and optionally mutes profanity on Netflix. |
ขนาดไฟล์ | 205 KB |
จำนวนการติดตั้ง | 443 |
เวอร์ชันปัจจุบัน | 1.07 |
อัปเดตครั้งล่าสุด | 2018-04-23 |
วันที่เผยแพร่ | 2018-04-23 |
คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | thedevcaleb |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Naughty Language Filter", "description": "Filters out obscene words on webpages and optionally mutes profanity on Netflix.", "version": "1.07", "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start", "all_frames": false } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "activeTab" ] } |