Watch Later Shortcut for YouTube™
Add and remove current video from the Watch Later list using a keyboard shortcut.
Watch Later Shortcut for YouTube™ là gì?
Watch Later Shortcut for YouTube™ là một tiện ích mở rộng Chrome được phát triển bởi Mykhailo Zachepylo, và tính năng chính của nó là "Add and remove current video from the Watch Later list using a keyboard shortcut.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Watch Later Shortcut for YouTube™
Tải xuống các tệp mở rộng Watch Later Shortcut for YouTube™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Watch Later Shortcut for YouTube™ |
ID | dhegojkfhodaifdnkoigmdoncoonbifd |
URL Chính Thức | https://chromewebstore.google.com/detail/watch-later-shortcut-for/dhegojkfhodaifdnkoigmdoncoonbifd |
Mô tả | Add and remove current video from the Watch Later list using a keyboard shortcut. |
Kích Thước Tệp | 7.61 KB |
Số Lần Cài Đặt | 888 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-08-07 |
Ngày Phát Hành | 2023-03-21 |
Đánh Giá | 5.00/5 Tổng số 21 Đánh Giá |
Nhà Phát Triển | Mykhailo Zachepylo |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext |
URL Trang Trợ Giúp | https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |