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.”。

扩展截图

screenshot

下载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 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
        }
    ]
}