Treehouse AutoPlay
Automatically play through all of the videos in a badge.
Was ist Treehouse AutoPlay?
Treehouse AutoPlay ist eine Chrome-Erweiterung, die von Matt West entwickelt wurde, und ihr Hauptmerkmal ist "Automatically play through all of the videos in a badge.".
Erweiterungsscreenshots
Treehouse AutoPlay-Erweiterungs-CRX-Datei herunterladen
Laden Sie Treehouse AutoPlay-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Treehouse AutoPlay |
ID | epcbdbkjnonaliagdjccjnoejpgdnjkm |
Offizielle URL | https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm |
Beschreibung | Automatically play through all of the videos in a badge. |
Dateigröße | 63.97 KB |
Installationsanzahl | 520 |
Aktuelle Version | 2.1 |
Letztes Update | 2018-03-23 |
Veröffentlichungsdatum | 2018-03-23 |
Bewertung | 3.67/5 Insgesamt 9 Bewertungen |
Entwickler | Matt West |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |