Webplayer Hotkeys - Shortcuts for web players

Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.

¿Qué es Webplayer Hotkeys - Shortcuts for web players?

Webplayer Hotkeys - Shortcuts for web players es una extensión de Chrome desarrollada por Gabriel Duarte, y su función principal es "Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Webplayer Hotkeys - Shortcuts for web players

Descarga archivos de extensión Webplayer Hotkeys - Shortcuts for web players en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Webplayer Hotkeys - Shortcuts for web players Webplayer Hotkeys - Shortcuts for web players
ID ikmkicnmahfdilneilgibeppbnolgkaf
URL Oficial https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf
Descripción Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
Tamaño del Archivo 52.04 KB
Cantidad de Instalaciones 887
Versión Actual 1.3.2
Última Actualización 2020-01-02
Fecha de Publicación 2020-01-02
Calificación 4.24/5 Total de 17 Calificaciones
Desarrollador Gabriel Duarte
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/GabrielDuarteM/Webplayer-Hotkeys
URL de la Página de Ayuda https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues
Idiomas Soportados 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"
    ]
}