Spotify Controller

Control Spotify Web Player from any window/tab.

Wat is Spotify Controller?

Spotify Controller is een Chrome-extensie ontwikkeld door Joe Warren, en de belangrijkste functie is "Control Spotify Web Player from any window/tab.".

Download het CRX-bestand van de extensie Spotify Controller

Download Spotify Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
Officiële URL https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Beschrijving Control Spotify Web Player from any window/tab.
Bestandsgrootte 167 KB
Aantal Installaties 100
Huidige Versie 1.0
Laatst Bijgewerkt 2014-02-19
Publicatiedatum 2014-02-19
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Joe Warren
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}