Treehouse AutoPlay
Automatically play through all of the videos in a badge.
Hvad er Treehouse AutoPlay?
Treehouse AutoPlay er en Chrome-udvidelse udviklet af Matt West, og dens hovedfunktion er "Automatically play through all of the videos in a badge.".
Udvidelsesskærmbilleder
Download Treehouse AutoPlay-udvidelses-CRX-fil
Download Treehouse AutoPlay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
Officiel URL | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
Beskrivelse | Automatically play through all of the videos in a badge. |
Filstørrelse | 63.97 KB |
Antal Installationer | 520 |
Nuværende Version | 2.1 |
Senest Opdateret | 2018-03-23 |
Udgivelsesdato | 2018-03-23 |
Bedømmelse | 3.67/5 Samlet 9 Bedømmelser |
Udvikler | Matt West |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |