Clean Stream
Allows you to filter Netflix.
什么是Clean Stream?
Clean Stream是由yolodevelopers开发的Chrome扩展程序,该扩展的主要功能是“Allows you to filter Netflix.”。
扩展截图
下载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 |
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" } } |