Clean Stream

Allows you to filter Netflix.

What is Clean Stream?

Clean Stream is a Chrome extension developed by yolodevelopers, and its main feature is "Allows you to filter Netflix.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Clean Stream Extension CRX File

Download Clean Stream 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 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.                    

Extension Basic Information

Name Clean Stream Clean Stream
ID cppacmdbokpnibcconbcniibodcfgdba
Official URL https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba
Description Allows you to filter Netflix.
File Size 25.76 KB
Installation Count 156
Current Version 1.0.9
Last Updated 2017-06-29
Publish Date 2017-06-29
Rating 3.00/5 Total 2 Ratings
Developer yolodevelopers
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}