Stream Clean

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

Что такое Stream Clean?

Stream Clean - это расширение Chrome, разработанное AdamS, и его основная функция - "Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Stream Clean

Скачайте файлы расширений Stream Clean в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Stream Clean Stream Clean
ID fdhfbcegmpgcbcfpifbihkhonohaiiod
Официальный URL https://chromewebstore.google.com/detail/stream-clean/fdhfbcegmpgcbcfpifbihkhonohaiiod
Описание Filters profanity and other user-defined words on Netflix, Amazon, Hulu, Disney+, and more using closed captions.
Размер файла 196 KB
Количество установок 4,286
Текущая Версия 2.4.28
Последнее Обновление 2024-03-04
Дата публикации 2020-06-30
Рейтинг 4.23/5 Всего 57 оценок
Разработчик AdamS
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}