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.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Autopilot.Video

قم بتنزيل ملفات الامتداد Autopilot.Video بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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
        }
    ]
}