Udemy™ Faster Autoplay
Removes the 3-second delay before autoplaying the next video.
Udemy™ Faster Autoplay란 무엇입니까?
Udemy™ Faster Autoplay은(는) elliotwaite에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes the 3-second delay before autoplaying the next video."입니다.
확장 프로그램 스크린샷
Udemy™ Faster Autoplay 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you enable autoplay while watching a Udemy playlist, once a video ends, you are usually advanced to the next video after a 3-second delay. This extension removes that 3-second delay so that you are always advanced to the next video immediately. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/udemy-faster-autoplay Thanks. Enjoy! Udemy™ is a trademark of Udemy, Inc. Use of this trademark is subject to Udemy Permissions.
확장 프로그램 기본 정보
이름 | Udemy™ Faster Autoplay |
ID | fepcpdjalebcocminbnogcgfbphllkeh |
공식 URL | https://chromewebstore.google.com/detail/udemy-faster-autoplay/fepcpdjalebcocminbnogcgfbphllkeh |
설명 | Removes the 3-second delay before autoplaying the next video. |
파일 크기 | 37.23 KB |
설치 횟수 | 645 |
현재 버전 | 0.2 |
최근 업데이트 | 2021-12-01 |
출시 날짜 | 2021-09-27 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | elliotwaite |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/elliotwaite/udemy-faster-autoplay |
도움말 페이지 URL | https://github.com/elliotwaite/udemy-faster-autoplay |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Udemy\u2122 Faster Autoplay", "version": "0.2", "description": "Removes the 3-second delay before autoplaying the next video.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.udemy.com\/*" ], "js": [ "lib\/jquery-3.6.0.min.js", "content-script.js" ], "run_at": "document_end" } ] } |