SmartVid - Netflix, Amazon, YouTube autopause
Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
ما هو SmartVid - Netflix, Amazon, YouTube autopause؟
SmartVid - Netflix, Amazon, YouTube autopause هو إضافة Chrome تم تطويرها بواسطة Shubham Bassi، والميزة الرئيسية لها هي "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SmartVid - Netflix, Amazon, YouTube autopause
قم بتنزيل ملفات الامتداد SmartVid - Netflix, Amazon, YouTube autopause بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension checks and automatically pauses the videos playing on Netflix, YouTube and PrimeVideo websites when you switch to another tab. When you switch back to any of the paused tabs, the video will resume from where you left off.
معلومات أساسية عن التمديد
الاسم | |
ID | hhgnmllddghdmpmnbdpkcmahegbdclnl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl |
الوصف | Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back. |
حجم الملف | 17.61 KB |
عدد التثبيتات | 24 |
النسخة الحالية | 2.0.0 |
آخر تحديث | 2020-09-29 |
تاريخ النشر | 2020-09-04 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Shubham Bassi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/izedamo/SmartVideo |
عنوان صفحة المساعدة | https://github.com/izedamo/SmartVideo/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SmartVid - Netflix, Amazon, YouTube autopause", "version": "2.0.0", "description": "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.primevideo.com\/*", "https:\/\/*.youtube.com\/*", "https:\/\/*.netflix.com\/*" ], "js": [ "scripts\/content-script.js" ] } ], "icons": { "16": "icons\/SmartVideo16.png", "32": "icons\/SmartVideo32.png", "48": "icons\/SmartVideo48.png", "128": "icons\/SmartVideo128.png" }, "manifest_version": 2 } |