Auto Pause Video
Automatically pauses html 5 videos after a page loads
ما هو Auto Pause Video؟
Auto Pause Video هو إضافة Chrome تم تطويرها بواسطة kfegen، والميزة الرئيسية لها هي "Automatically pauses html 5 videos after a page loads".
تحميل ملف CRX للإضافة Auto Pause Video
قم بتنزيل ملفات الامتداد Auto Pause Video بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple extension that pauses videos when the page is loaded.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
الوصف | Automatically pauses html 5 videos after a page loads |
حجم الملف | 3.19 KB |
عدد التثبيتات | 91 |
النسخة الحالية | 1.0 |
آخر تحديث | 2014-06-05 |
تاريخ النشر | 2014-06-05 |
تقييم | 3.33/5 مجموع تقييمات 6 |
المطور | kfegen |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Pause Video", "description": "Automatically pauses html 5 videos after a page loads", "version": "1.0", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |