Watch Later Shortcut for YouTube™

Add and remove current video from the Watch Later list using a keyboard shortcut.

O que é Watch Later Shortcut for YouTube™?

Watch Later Shortcut for YouTube™ é uma extensão do Chrome desenvolvida por Mykhailo Zachepylo, e sua principal característica é "Add and remove current video from the Watch Later list using a keyboard shortcut.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Watch Later Shortcut for YouTube™

Baixe arquivos de extensão Watch Later Shortcut for YouTube™ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Watch Later Shortcut for YouTube™ Watch Later Shortcut for YouTube™
ID dhegojkfhodaifdnkoigmdoncoonbifd
URL Oficial https://chromewebstore.google.com/detail/watch-later-shortcut-for/dhegojkfhodaifdnkoigmdoncoonbifd
Descrição Add and remove current video from the Watch Later list using a keyboard shortcut.
Tamanho do Arquivo 7.61 KB
Contagem de Instalações 888
Versão Atual 1.1
Última Atualização 2023-08-07
Data de Publicação 2023-03-21
Classificação 5.00/5 Total de 21 Avaliações
Desenvolvedor Mykhailo Zachepylo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext
URL da Página de Ajuda https://github.com/WorldThirteen/youtube-watch-later-shortcut-ext/issues
Idiomas Suportados 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"
    }
}