Netflix profanity filter
By Frederik de Vree
What is Netflix profanity filter?
Netflix profanity filter is a Chrome extension developed by frederikdevree, and its main feature is "By Frederik de Vree".
Extension Screenshots
Download Netflix profanity filter Extension CRX File
Download Netflix profanity filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Netflix profanity filter |
ID | maljbdebgffplibkcchbjahfjhppkpmp |
Official URL | https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp |
Description | By Frederik de Vree |
File Size | 71.38 KB |
Installation Count | 5,613 |
Current Version | 2.2.2 |
Last Updated | 2015-12-31 |
Publish Date | 2015-12-31 |
Rating | 3.17/5 Total 71 Ratings |
Developer | frederikdevree |
Payment Type | free |
Supported Languages | 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" } ] } |