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 |
官方網址 | 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" } } |