Stream Clean

Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.

Vad är Stream Clean?

Stream Clean är en Chrome-tillägg utvecklad av AdamS, och dess huvudfunktion är "Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Stream Clean-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

                        Stream Clean filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.

This extension was developed to mute and hide profanity and other offensive language while watching common video services.                    

Grundläggande Information om Tillägg

Namn Stream Clean Stream Clean
ID fdhfbcegmpgcbcfpifbihkhonohaiiod
Officiell webbadress https://chromewebstore.google.com/detail/stream-clean/fdhfbcegmpgcbcfpifbihkhonohaiiod
Beskrivning Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.
Filstorlek 196 KB
Antal Installationer 4,286
Aktuell Version 2.4.28
Senast Uppdaterad 2024-03-04
Publiceringsdatum 2020-06-30
Betyg 4.23/5 Totalt 57 Betyg
Utvecklare AdamS
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": "Stream Clean",
    "short_name": "Stream Clean",
    "description": "Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.",
    "version": "2.4.28",
    "background": {
        "persistent": true,
        "scripts": [
            "scripts\/streamClean.js",
            "scripts\/filter.js",
            "scripts\/eventPage.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/_app.js",
                "scripts\/tabLoaded.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "settings.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "images\/icon-128-bw.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon-128.png"
    }
}