Autopilot.Video
Auto-mutes Netflix/Hulu/Amazon/Vudu/AppleTV+/PeacockTV videos to help avoid parts of the video deemed inappropriate/annoying.
Autopilot.Videoとは何ですか?
Autopilot.VideoはMikal Applicationsによって開発されたChromeの拡張機能で、その主な機能は「Auto-mutes Netflix/Hulu/Amazon/Vudu/AppleTV+/PeacockTV videos to help avoid parts of the video deemed inappropriate/annoying.」です。
拡張機能のスクリーンショット
Autopilot.Video拡張機能のCRXファイルをダウンロード
Autopilot.Video拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Autopilot.Video browser extension enhances the viewing of videos on Netflix, Vudu, Hulu, Amazon, HBOMax, Peacock TV & Apple TV+ by automatically muting the video audio when profanity is used. The current version requires users to turn on English subtitles for Autopilot.Video to automatically mute profanity. Future updates will include content filtering, by automatically skipping over inappropriate or annoying content. Please note that Autopilot.Video is not affiliated or endorsed by any of the video streaming services mentioned above. Privacy policy found at https://privacy.autopilot.video/
拡張機能の基本情報
名前 | Autopilot.Video |
ID | kmnijjdgcchgikcnhcjdfgonmgejfoco |
公式URL | https://chromewebstore.google.com/detail/autopilotvideo/kmnijjdgcchgikcnhcjdfgonmgejfoco |
説明 | Auto-mutes Netflix/Hulu/Amazon/Vudu/AppleTV+/PeacockTV videos to help avoid parts of the video deemed inappropriate/annoying. |
ファイルサイズ | 44.94 KB |
インストール数 | 23 |
現在のバージョン | 1.2.0 |
最終更新日 | 2022-01-02 |
公開日 | 2020-05-08 |
開発者 | Mikal Applications |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://privacy.autopilot.video |
プライバシーポリシーページのURL | https://privacy.autopilot.video |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Autopilot.Video", "version": "1.2.0", "description": "Auto-mutes Netflix\/Hulu\/Amazon\/Vudu\/AppleTV+\/PeacockTV videos to help avoid parts of the video deemed inappropriate\/annoying.", "icons": { "16": "icons\/autopiloticon.png", "48": "icons\/autopiloticon.png", "128": "icons\/autopiloticon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "scripts\/netflixfilterv2.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/*.amazon.com\/gp\/video\/detail\/*", "*:\/\/*.amazon.com\/gp\/product\/B08F81VWVD*" ], "js": [ "scripts\/amazonfilterv2.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/*.hulu.com\/*" ], "js": [ "scripts\/hulufilterv2.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/tv.apple.com\/*" ], "js": [ "scripts\/appletvfilterv2.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/www.vudu.com\/*" ], "js": [ "scripts\/vudufilter.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/play.hbomax.com\/*" ], "js": [ "scripts\/hbomaxfilterv2.js" ], "run_at": "document_end", "match_about_blank": true }, { "matches": [ "*:\/\/www.peacocktv.com\/*" ], "js": [ "scripts\/peacockfilterv2.js" ], "run_at": "document_end", "match_about_blank": true } ] } |