AutoPlayOff

This extension will find all of the videos on the page that auto play and stop them from doing so

ما هو AutoPlayOff؟

AutoPlayOff هو إضافة Chrome تم تطويرها بواسطة aothomas، والميزة الرئيسية لها هي "This extension will find all of the videos on the page that auto play and stop them from doing so".

تحميل ملف CRX للإضافة AutoPlayOff

قم بتنزيل ملفات الامتداد AutoPlayOff بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A Chrome extension that allows you to mute or remove videos on websites. This is supposed to target those annoying, intrusive video advertisements. You can use this extension if you still want to support the website by leaving ads, but making sure videos don't popup                    

معلومات أساسية عن التمديد

الاسم AutoPlayOff AutoPlayOff
ID kkdhilabpimmejlcmfjilfgfkdghkndg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/autoplayoff/kkdhilabpimmejlcmfjilfgfkdghkndg
الوصف This extension will find all of the videos on the page that auto play and stop them from doing so
حجم الملف 669 KB
عدد التثبيتات 16
النسخة الحالية 1.0
آخر تحديث 2018-06-24
تاريخ النشر 2018-06-24
المطور aothomas
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoPlayOff",
    "description": "This extension will find all of the videos on the page that auto play and stop them from doing so",
    "version": "1.0",
    "icons": {
        "16": "DisabledSpeakerIcon16.png",
        "48": "DisabledSpeakerIcon48.png",
        "128": "DisabledSpeakerIcon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.3.1.slim.min.js",
                "ContentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_page": "options.html"
}