Udemy seeks
Add a seek to next caption, time bookmark and other time-seek related feature to Udemy course page.
Udemy seeks란 무엇입니까?
Udemy seeks은(는) Huybn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a seek to next caption, time bookmark and other time-seek related feature to Udemy course page."입니다.
확장 프로그램 스크린샷
Udemy seeks 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features - Seek to next/previous caption start time. - Medium/Long jump to jump 10 seconds and 1 minute. - Go to next/previous lecture hotkey. - Add temporary bookmark of video time, will be clear on load next lecture. - Always show video controls, or show progress bar only when always show. - Copy current caption, open translate page with current caption. Keybindings - Ctrl+→/⌘→: Seek to next caption - Ctrl+←/⌘←: Seek to previous caption - Ctrl+Shift+→/⌘⇧→: Medium forward jump - Ctrl+Shift←/⌘⇧←: Medium backward jump - Ctrl+Alt+Shift+→/⌘⌃⇧→: Long forward jump - Ctrl+Alt+Shift+←/⌘⌃⇧←: Long backward jump - Ctrl+Alt+Shift+c/⌘⌥⇧c: Copy current caption - Ctrl+Alt+Shift+l/⌘⌥⇧l: Open translate page with current caption - Shift+1~5: Jump to bookmark #1~5 - Ctrl+Shift+1~5/⌥⇧+15: Set bookmark #1~5
확장 프로그램 기본 정보
이름 | Udemy seeks |
ID | gdekabefnhhpnianhbcokcngmjhjnoel |
공식 URL | https://chromewebstore.google.com/detail/udemy-seeks/gdekabefnhhpnianhbcokcngmjhjnoel |
설명 | Add a seek to next caption, time bookmark and other time-seek related feature to Udemy course page. |
파일 크기 | 209 KB |
설치 횟수 | 30 |
현재 버전 | 1.0.11 |
최근 업데이트 | 2021-09-21 |
출시 날짜 | 2021-06-13 |
개발자 | Huybn |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/huybn5776/udemy-seeks |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Udemy seeks", "version": "1.0.11", "description": "Add a seek to next caption, time bookmark and other time-seek related feature to Udemy course page.", "homepage_url": "https:\/\/github.com\/huybn5776\/udemy-seeks", "icons": { "32": "icons\/udemy-seek-32.png", "64": "icons\/udemy-seek-64.png", "128": "icons\/udemy-seek-128.png" }, "browser_specific_settings": { "gecko": { "id": "@udemy-seeks" } }, "browser_action": { "default_icon": { "32": "icons\/udemy-seek-32.png" }, "default_title": "Udemy seeks", "default_popup": "popup.html" }, "options_ui": { "page": "options-page.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.udemy.com\/course\/*" ], "js": [ "build\/content-script.js" ], "css": [ "content-script.css" ] } ], "permissions": [ "storage", "*:\/\/*.udemycdn.com\/*" ] } |