Spotify Controller

Control Spotify Web Player from any window/tab.

Vad är Spotify Controller?

Spotify Controller är en Chrome-tillägg utvecklad av Joe Warren, och dess huvudfunktion är "Control Spotify Web Player from any window/tab.".

Ladda ner Spotify Controller-förlängningens CRX-fil

Ladda ner Spotify Controller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
Officiell webbadress https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Beskrivning Control Spotify Web Player from any window/tab.
Filstorlek 167 KB
Antal Installationer 100
Aktuell Version 1.0
Senast Uppdaterad 2014-02-19
Publiceringsdatum 2014-02-19
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare Joe Warren
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    }
}