Clean Stream

Allows you to filter Netflix.

Что такое Clean Stream?

Clean Stream - это расширение Chrome, разработанное yolodevelopers, и его основная функция - "Allows you to filter Netflix.".

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

screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

Название Clean Stream Clean Stream
ID cppacmdbokpnibcconbcniibodcfgdba
Официальный URL https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba
Описание Allows you to filter Netflix.
Размер файла 25.76 KB
Количество установок 156
Текущая Версия 1.0.9
Последнее Обновление 2017-06-29
Дата публикации 2017-06-29
Рейтинг 3.00/5 Всего 2 оценок
Разработчик yolodevelopers
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}