Spotify Controller

Controll your Spotify player via shortcut commands

O que é Spotify Controller?

Spotify Controller é uma extensão do Chrome desenvolvida por Elias Wennerlund, e sua principal característica é "Controll your Spotify player via shortcut commands".

Capturas de Tela da Extensão

screenshot

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

                        Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead!

Standard commands:
    Back button: Alt+Shift+D
    Pause/Play: Alt+Shift+F
    Next button: Alt+Shift+G

You can also add shortcuts to the Shuffle and Repeat buttons.

If you want to change the commands, go to chrome://extensions/shortcuts                    

Informações Básicas da Extensão

Nome Spotify Controller Spotify Controller
ID jpjbjbgjbicfeifjclhojfelcifcndnh
URL Oficial https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh
Descrição Controll your Spotify player via shortcut commands
Tamanho do Arquivo 15.11 KB
Contagem de Instalações 3,000
Versão Atual 1.2.0
Última Atualização 2021-06-04
Data de Publicação 2020-08-24
Classificação 3.86/5 Total de 7 Avaliações
Desenvolvedor Elias Wennerlund
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Controller",
    "description": "Controll your Spotify player via shortcut commands",
    "author": "Elias Wennerlund",
    "version": "1.2.0",
    "permissions": [
        "tabs",
        "commands"
    ],
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "128": "128.png"
        }
    },
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Back button",
            "global": false
        },
        "play-pause": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Play\/Pause button",
            "global": false
        },
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+G"
            },
            "description": "Next button",
            "global": false
        },
        "shuffle": {
            "description": "Shuffle button"
        },
        "repeat": {
            "description": "Repeat button"
        }
    },
    "manifest_version": 2
}