Spotify Controller

Control Spotify Web Player from any window/tab.

O que é Spotify Controller?

Spotify Controller é uma extensão do Chrome desenvolvida por Joe Warren, e sua principal característica é "Control Spotify Web Player from any window/tab.".

Baixar o arquivo CRX da Extensão Spotify Controller

Baixe arquivos de extensão Spotify Controller 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

                        Control the web Spotify Player(https://play.spotify.com) from any Chrome window/tab.

Play/pause: Ctrl + Shift + P
Next song: Ctrl + Shift + N
Previous song: Ctrl + Shift + B                    

Informações Básicas da Extensão

Nome Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
URL Oficial https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Descrição Control Spotify Web Player from any window/tab.
Tamanho do Arquivo 167 KB
Contagem de Instalações 100
Versão Atual 1.0
Última Atualização 2014-02-19
Data de Publicação 2014-02-19
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor Joe Warren
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Controller",
    "description": "Control Spotify Web Player from any window\/tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "toggle-pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Toggle pause and play"
        },
        "toggle-next": {
            "suggested_key": {
                "default": "Ctrl+Shift+N",
                "mac": "MacCtrl+Shift+N"
            },
            "description": "Play the next song"
        },
        "toggle-previous": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "mac": "MacCtrl+Shift+B"
            },
            "description": "Play the previous song"
        }
    }
}