Clean Stream

Allows you to filter Netflix.

Vad är Clean Stream?

Clean Stream är en Chrome-tillägg utvecklad av yolodevelopers, och dess huvudfunktion är "Allows you to filter Netflix.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Clean Stream-förlängningens CRX-fil

Ladda ner Clean Stream-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Clean Stream Clean Stream
ID cppacmdbokpnibcconbcniibodcfgdba
Officiell webbadress https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba
Beskrivning Allows you to filter Netflix.
Filstorlek 25.76 KB
Antal Installationer 156
Aktuell Version 1.0.9
Senast Uppdaterad 2017-06-29
Publiceringsdatum 2017-06-29
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare yolodevelopers
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}