Spotify Controller
Control Spotify Web Player from any window/tab.
What is Spotify Controller?
Spotify Controller is a Chrome extension developed by Joe Warren, and its main feature is "Control Spotify Web Player from any window/tab.".
Download Spotify Controller Extension CRX File
Download Spotify Controller extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | celedfadbfmnehggekllhcbpgokjkknf |
Official URL | https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf |
Description | Control Spotify Web Player from any window/tab. |
File Size | 167 KB |
Installation Count | 100 |
Current Version | 1.0 |
Last Updated | 2014-02-19 |
Publish Date | 2014-02-19 |
Rating | 2.33/5 Total 3 Ratings |
Developer | Joe Warren |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |