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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |