Udemy™ Faster Autoplay
Removes the 3-second delay before autoplaying the next video.
ما هو Udemy™ Faster Autoplay؟
Udemy™ Faster Autoplay هو إضافة Chrome تم تطويرها بواسطة elliotwaite، والميزة الرئيسية لها هي "Removes the 3-second delay before autoplaying the next video.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Udemy™ Faster Autoplay
قم بتنزيل ملفات الامتداد Udemy™ Faster Autoplay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
If you enable autoplay while watching a Udemy playlist, once a video ends, you are usually advanced to the next video after a 3-second delay. This extension removes that 3-second delay so that you are always advanced to the next video immediately. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/udemy-faster-autoplay Thanks. Enjoy! Udemy™ is a trademark of Udemy, Inc. Use of this trademark is subject to Udemy Permissions.
معلومات أساسية عن التمديد
الاسم | Udemy™ Faster Autoplay |
ID | fepcpdjalebcocminbnogcgfbphllkeh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/udemy-faster-autoplay/fepcpdjalebcocminbnogcgfbphllkeh |
الوصف | Removes the 3-second delay before autoplaying the next video. |
حجم الملف | 37.23 KB |
عدد التثبيتات | 645 |
النسخة الحالية | 0.2 |
آخر تحديث | 2021-12-01 |
تاريخ النشر | 2021-09-27 |
تقييم | 5.00/5 مجموع تقييمات 5 |
المطور | elliotwaite |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/elliotwaite/udemy-faster-autoplay |
عنوان صفحة المساعدة | https://github.com/elliotwaite/udemy-faster-autoplay |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Udemy\u2122 Faster Autoplay", "version": "0.2", "description": "Removes the 3-second delay before autoplaying the next video.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.udemy.com\/*" ], "js": [ "lib\/jquery-3.6.0.min.js", "content-script.js" ], "run_at": "document_end" } ] } |