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文件
下载Watch Later Shortcut for YouTube™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |