Webplayer Hotkeys - Shortcuts for web players
Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
O que é Webplayer Hotkeys - Shortcuts for web players?
Webplayer Hotkeys - Shortcuts for web players é uma extensão do Chrome desenvolvida por Gabriel Duarte, e sua principal característica é "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Webplayer Hotkeys - Shortcuts for web players
Baixe arquivos de extensão Webplayer Hotkeys - Shortcuts for web players 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
A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify. If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube Works with: • Spotify • Deezer • SoundCloud • Youtube
Informações Básicas da Extensão
Nome | Webplayer Hotkeys - Shortcuts for web players |
ID | ikmkicnmahfdilneilgibeppbnolgkaf |
URL Oficial | https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf |
Descrição | Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music. |
Tamanho do Arquivo | 52.04 KB |
Contagem de Instalações | 887 |
Versão Atual | 1.3.2 |
Última Atualização | 2020-01-02 |
Data de Publicação | 2020-01-02 |
Classificação | 4.24/5 Total de 17 Avaliações |
Desenvolvedor | Gabriel Duarte |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/GabrielDuarteM/Webplayer-Hotkeys |
URL da Página de Ajuda | https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webplayer Hotkeys - Shortcuts for web players", "version": "1.3.2", "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.", "icons": { "128": "icon.png" }, "author": "Gabriel Duarte", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "prev": { "description": "Previous music", "suggested_key": "Alt+Shift+Comma", "global": true }, "play": { "description": "Play\/pause", "suggested_key": "Alt+Shift+P", "global": true }, "next": { "description": "Next music", "suggested_key": "Alt+Shift+Period", "global": true } }, "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master", "incognito": "split", "permissions": [ "*:\/\/*.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/soundcloud.com\/*", "*:\/\/*.deezer.com\/*", "tabs" ] } |