Clean Stream

Allows you to filter Netflix.

Clean Streamとは何ですか?

Clean Streamはyolodevelopersによって開発されたChromeの拡張機能で、その主な機能は「Allows you to filter Netflix.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Clean Stream拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}