Spotify Controller

Control Spotify Web Player from any window/tab.

Co to jest Spotify Controller?

Spotify Controller to rozszerzenie Chrome opracowane przez Joe Warren, a jego główną funkcją jest „Control Spotify Web Player from any window/tab.”.

Pobierz plik CRX rozszerzenia Spotify Controller

Pobierz pliki rozszerzeń Spotify Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Spotify Controller Spotify Controller
ID celedfadbfmnehggekllhcbpgokjkknf
Oficjalny URL https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf
Opis Control Spotify Web Player from any window/tab.
Rozmiar pliku 167 KB
Liczba instalacji 100
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-02-19
Data Publikacji 2014-02-19
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper Joe Warren
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    }
}