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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |