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 |
官方網址 | 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" } } |