Spotify Controller
Control Spotify Web Player from any window/tab.
Co je Spotify Controller?
Spotify Controller je rozšíření Chrome vyvinuté Joe Warren, a jeho hlavní funkcí je „Control Spotify Web Player from any window/tab.“.
Stáhnout soubor CRX rozšíření Spotify Controller
Stáhněte si soubory rozšíření Spotify Controller ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | celedfadbfmnehggekllhcbpgokjkknf |
Oficiální URL | https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf |
Popis | Control Spotify Web Player from any window/tab. |
Velikost souboru | 167 KB |
Počet instalací | 100 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2014-02-19 |
Datum Vydání | 2014-02-19 |
Hodnocení | 2.33/5 Celkem 3 Hodnocení |
Vývojář | Joe Warren |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } } |