Netflix profanity filter
By Frederik de Vree
Netflix profanity filterคืออะไร?
Netflix profanity filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย frederikdevree และคุณลักษณะหลักของมันคือ "By Frederik de Vree"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix profanity filter
ดาวน์โหลดไฟล์ส่วนขยาย Netflix profanity filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension filters profanity words in Netflix. It both censors the subtitles and mutes the audio on the appropriate sentence. With customizable profanity word list. To use this, subtitles in Netflix need to be turned on. Because the filtering is based on the subtitles, make sure you add profanity words to the list in the language of the subtitles.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Netflix profanity filter |
ID | maljbdebgffplibkcchbjahfjhppkpmp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp |
คำอธิบาย | By Frederik de Vree |
ขนาดไฟล์ | 71.38 KB |
จำนวนการติดตั้ง | 5,613 |
เวอร์ชันปัจจุบัน | 2.2.2 |
อัปเดตครั้งล่าสุด | 2015-12-31 |
วันที่เผยแพร่ | 2015-12-31 |
คะแนน | 3.17/5 รวมทั้งหมด 71 คะแนน |
ผู้พัฒนา | frederikdevree |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix profanity filter", "version": "2.2.2", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "description": "By Frederik de Vree", "permissions": [ "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "jquery-2.1.4.min.js", "content.js" ], "run_at": "document_idle" } ] } |