Treehouse AutoPlay
Automatically play through all of the videos in a badge.
ما هو Treehouse AutoPlay؟
Treehouse AutoPlay هو إضافة Chrome تم تطويرها بواسطة Matt West، والميزة الرئيسية لها هي "Automatically play through all of the videos in a badge.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Treehouse AutoPlay
قم بتنزيل ملفات الامتداد Treehouse AutoPlay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension will automatically play the next video in the badge playlist when the current video finishes. Great for people that want to sit back and enjoy the videos without having to manually move on to the next video all of the time. ***** UPDATE v2 ***** Support for the updated Treehouse website. You can get involved in the development here: https://github.com/matt-west/treehouse-autoplay/ The 'treehouse' and 'mike the frog' logos are property of Treehouse Island, Inc.
معلومات أساسية عن التمديد
الاسم | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
الوصف | Automatically play through all of the videos in a badge. |
حجم الملف | 63.97 KB |
عدد التثبيتات | 520 |
النسخة الحالية | 2.1 |
آخر تحديث | 2018-03-23 |
تاريخ النشر | 2018-03-23 |
تقييم | 3.67/5 مجموع تقييمات 9 |
المطور | Matt West |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Treehouse AutoPlay", "version": "2.1", "description": "Automatically play through all of the videos in a badge.", "permissions": [ "http:\/\/teamtreehouse.com\/" ], "icons": { "128": "img\/icon.png" }, "background": { "page": "background.html" }, "browser_action": { "default_icon": "img\/inactive.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/teamtreehouse.com\/library\/*" ], "js": [ "js\/jquery-1.7.min.js", "js\/autoplay.js" ], "run_at": "document_start" } ] } |