Watch Later Shortcut for YouTube™
Add and remove current video from the Watch Later list using a keyboard shortcut.
Watch Later Shortcut for YouTube™란 무엇입니까?
Watch Later Shortcut for YouTube™은(는) Mykhailo Zachepylo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add and remove current video from the Watch Later list using a keyboard shortcut."입니다.
확장 프로그램 스크린샷
Watch Later Shortcut for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
For Mac: - ⌥ Option + ⇧ Shift + L to Add Video - ⌥ Option + L to Remove Video For Windows: - Alt + ⇧ Shift + L to Add Video - Alt + L to Remove Video For ChromeOS: - Alt + K to Add Video - Alt + L to Remove Video As the result the notification about successful list update should appear. Shortcuts can be changed in the extension's options at: chrome://extensions/shortcuts. Extension designed to work on the desktop version of the YouTube™. The following YouTube™ website updates might break the functionality of the extension, please be patient for an update. This extension is open source: https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext. YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
확장 프로그램 기본 정보
이름 | Watch Later Shortcut for YouTube™ |
ID | dhegojkfhodaifdnkoigmdoncoonbifd |
공식 URL | https://chromewebstore.google.com/detail/watch-later-shortcut-for/dhegojkfhodaifdnkoigmdoncoonbifd |
설명 | Add and remove current video from the Watch Later list using a keyboard shortcut. |
파일 크기 | 7.61 KB |
설치 횟수 | 888 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-08-07 |
출시 날짜 | 2023-03-21 |
평점 | 5.00/5 총 21 개의 평점 |
개발자 | Mykhailo Zachepylo |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext |
도움말 페이지 URL | https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Watch Later Shortcut for YouTube\u2122", "version": "1.1", "author": "[email protected]", "description": "Add and remove current video from the Watch Later list using a keyboard shortcut.", "manifest_version": 3, "permissions": [ "scripting", "activeTab" ], "icons": { "32": "\/icons\/32.png", "128": "\/icons\/128.png" }, "commands": { "add-to-watch-later": { "suggested_key": { "default": "Alt+Shift+L", "mac": "Alt+Shift+L", "chromeos": "Alt+K" }, "description": "Add the current video from the Watch Later list." }, "remove-from-watch-later": { "suggested_key": { "default": "Alt+L", "mac": "Alt+L", "chromeos": "Alt+L" }, "description": "Remove the current video from the Watch Later list." } }, "background": { "service_worker": "background.js" } } |