No AutoPlay

Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.

ما هو No AutoPlay؟

No AutoPlay هو إضافة Chrome تم تطويرها بواسطة jccovey، والميزة الرئيسية لها هي "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.".

تحميل ملف CRX للإضافة No AutoPlay

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

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

                        Limited to YouTube videos. 

The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.                    

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

الاسم No AutoPlay No AutoPlay
ID kpcjcnadodbmcfhkknekeofhidnkjeii
عنوان URL الرسمي https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii
الوصف Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
حجم الملف 4.07 KB
عدد التثبيتات 116
النسخة الحالية 1.0.0
آخر تحديث 2017-12-06
تاريخ النشر 2017-12-06
تقييم 3.00/5 مجموع تقييمات 7
المطور jccovey
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No AutoPlay",
    "version": "1.0.0",
    "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.",
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtu.be\/*",
                "https:\/\/*.youtu.be\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "manifest_version": 2
}