Clean Stream
Allows you to filter Netflix.
Was ist Clean Stream?
Clean Stream ist eine Chrome-Erweiterung, die von yolodevelopers entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to filter Netflix.".
Erweiterungsscreenshots
Clean Stream-Erweiterungs-CRX-Datei herunterladen
Laden Sie Clean Stream-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 automatically mutes Netflix when profanity is spoken. Clean stream generates a list of the profanity contained within a movie and allows you to choose what language you want filtered out before the movie begins. Clean Stream uses a customizable list of profanity to filter movies. The captions need to be on when the video starts in order for it to work. Filters are currently being added that will allow certain scenes to be skipped in addition to muting language.
Grundlegende Informationen zur Erweiterung
Name | Clean Stream |
ID | cppacmdbokpnibcconbcniibodcfgdba |
Offizielle URL | https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba |
Beschreibung | Allows you to filter Netflix. |
Dateigröße | 25.76 KB |
Installationsanzahl | 156 |
Aktuelle Version | 1.0.9 |
Letztes Update | 2017-06-29 |
Veröffentlichungsdatum | 2017-06-29 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | yolodevelopers |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Stream", "description": "Allows you to filter Netflix.", "version": "1.0.9", "permissions": [ "tabs", "webNavigation", "*:\/\/*.netflix.com\/watch\/*", "*:\/\/*.dropbox.com\/*", "*:\/\/docs.google.com\/*", "*:\/\/accounts.google.com\/*", "*:\/\/drive.google.com\/*", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/watch\/*" ], "js": [ "filter.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "default_popup": "popup.html", "default_title": "Filter Options" }, "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" } } |