Treehouse AutoPlay
Automatically play through all of the videos in a badge.
Cos'è Treehouse AutoPlay?
Treehouse AutoPlay è un'estensione di Chrome sviluppata da Matt West, e la sua funzione principale è "Automatically play through all of the videos in a badge.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Treehouse AutoPlay
Scarica i file di estensione Treehouse AutoPlay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
URL Ufficiale | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
Descrizione | Automatically play through all of the videos in a badge. |
Dimensione del File | 63.97 KB |
Conteggio Installazioni | 520 |
Versione Corrente | 2.1 |
Ultimo Aggiornamento | 2018-03-23 |
Data di Pubblicazione | 2018-03-23 |
Valutazione | 3.67/5 Totale 9 Valutazioni |
Sviluppatore | Matt West |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |