Netflix profanity filter
By Frederik de Vree
什么是Netflix profanity filter?
Netflix profanity filter是由frederikdevree开发的Chrome扩展程序,该扩展的主要功能是“By Frederik de Vree”。
扩展截图
下载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 |
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" } ] } |