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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mikal Applications และคุณลักษณะหลักของมันคือ "Auto-mutes Netflix/Hulu/Amazon/Vudu/AppleTV+/PeacockTV videos to help avoid parts of the video deemed inappropriate/annoying."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autopilot.Video
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } ] } |