Netflix profanity filter

By Frederik de Vree

Netflix profanity filterとは何ですか?

Netflix profanity filterはfrederikdevreeによって開発されたChromeの拡張機能で、その主な機能は「By Frederik de Vree」です。

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

screenshot
screenshot

Netflix profanity filter拡張機能のCRXファイルをダウンロード

Netflix profanity filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension filters profanity words in Netflix. It both censors the subtitles and mutes the audio on the appropriate sentence. With customizable profanity word list.

To use this, subtitles in Netflix need to be turned on. Because the filtering is based on the subtitles, make sure you add profanity words to the list in the language of the subtitles.                    

拡張機能の基本情報

名前 Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
公式URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
説明 By Frederik de Vree
ファイルサイズ 71.38 KB
インストール数 5,613
現在のバージョン 2.2.2
最終更新日 2015-12-31
公開日 2015-12-31
評価 3.17/5 合計 71 レビュー
開発者 frederikdevree
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix profanity filter",
    "version": "2.2.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "By Frederik de Vree",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}