Netflix profanity filter
By Frederik de Vree
Was ist Netflix profanity filter?
Netflix profanity filter ist eine Chrome-Erweiterung, die von frederikdevree entwickelt wurde, und ihr Hauptmerkmal ist "By Frederik de Vree".
Erweiterungsscreenshots
Netflix profanity filter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Netflix profanity filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Netflix profanity filter |
ID | maljbdebgffplibkcchbjahfjhppkpmp |
Offizielle URL | https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp |
Beschreibung | By Frederik de Vree |
Dateigröße | 71.38 KB |
Installationsanzahl | 5,613 |
Aktuelle Version | 2.2.2 |
Letztes Update | 2015-12-31 |
Veröffentlichungsdatum | 2015-12-31 |
Bewertung | 3.17/5 Insgesamt 71 Bewertungen |
Entwickler | frederikdevree |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |