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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
        }
    ]
}