Treehouse AutoPlay
Automatically play through all of the videos in a badge.
Treehouse AutoPlayとは何ですか?
Treehouse AutoPlayはMatt Westによって開発されたChromeの拡張機能で、その主な機能は「Automatically play through all of the videos in a badge.」です。
拡張機能のスクリーンショット
Treehouse AutoPlay拡張機能のCRXファイルをダウンロード
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" } ] } |