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" } ] } |