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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto-mutes Netflix/Hulu/Amazon/Vudu/AppleTV+/PeacockTV videos to help avoid parts of the video deemed inappropriate/annoying."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Autopilot.Video एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } ] } |