Clean Stream

Allows you to filter Netflix.

¿Qué es Clean Stream?

Clean Stream es una extensión de Chrome desarrollada por yolodevelopers, y su función principal es "Allows you to filter Netflix.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Clean Stream

Descarga archivos de extensión Clean Stream en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Clean Stream Clean Stream
ID cppacmdbokpnibcconbcniibodcfgdba
URL Oficial https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba
Descripción Allows you to filter Netflix.
Tamaño del Archivo 25.76 KB
Cantidad de Instalaciones 156
Versión Actual 1.0.9
Última Actualización 2017-06-29
Fecha de Publicación 2017-06-29
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador yolodevelopers
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}