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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } ] } |