Stream Clean

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

Co to jest Stream Clean?

Stream Clean to rozszerzenie Chrome opracowane przez AdamS, a jego główną funkcją jest „Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Stream Clean

Pobierz pliki rozszerzeń Stream Clean w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Stream Clean Stream Clean
ID fdhfbcegmpgcbcfpifbihkhonohaiiod
Oficjalny URL https://chromewebstore.google.com/detail/stream-clean/fdhfbcegmpgcbcfpifbihkhonohaiiod
Opis Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.
Rozmiar pliku 196 KB
Liczba instalacji 4,286
Aktualna Wersja 2.4.28
Ostatnia Aktualizacja 2024-03-04
Data Publikacji 2020-06-30
Ocena 4.23/5 Łącznie 57 Oceny
Deweloper AdamS
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}