Spotify Controller

Control Spotify Web Player from any window/tab.

Cos'è Spotify Controller?

Spotify Controller è un'estensione di Chrome sviluppata da Joe Warren, e la sua funzione principale è "Control Spotify Web Player from any window/tab.".

Scarica il file CRX dell'estensione Spotify Controller

Scarica i file di estensione Spotify Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
URL Ufficiale https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Descrizione Control Spotify Web Player from any window/tab.
Dimensione del File 167 KB
Conteggio Installazioni 100
Versione Corrente 1.0
Ultimo Aggiornamento 2014-02-19
Data di Pubblicazione 2014-02-19
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore Joe Warren
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    }
}