Treehouse AutoPlay
Automatically play through all of the videos in a badge.
What is Treehouse AutoPlay?
Treehouse AutoPlay is a Chrome extension developed by Matt West, and its main feature is "Automatically play through all of the videos in a badge.".
Extension Screenshots
Download Treehouse AutoPlay Extension CRX File
Download Treehouse AutoPlay extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
Official URL | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
Description | Automatically play through all of the videos in a badge. |
File Size | 63.97 KB |
Installation Count | 520 |
Current Version | 2.1 |
Last Updated | 2018-03-23 |
Publish Date | 2018-03-23 |
Rating | 3.67/5 Total 9 Ratings |
Developer | Matt West |
Payment Type | free |
Supported Languages | 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" } ] } |