Control Spotify
Play and pause Spotify.
What is Control Spotify?
Control Spotify is a Chrome extension developed by John Tantalo, and its main feature is "Play and pause Spotify.".
Download Control Spotify Extension CRX File
Download Control Spotify 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
This extension lets you play and pause Spotify from any tab or window.
Extension Basic Information
Name | |
ID | ednibkmgpamaijdfjkdhdfgeklgfbllp |
Official URL | https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp |
Description | Play and pause Spotify. |
File Size | 11.05 KB |
Installation Count | 14 |
Current Version | 1.0 |
Last Updated | 2013-05-27 |
Publish Date | 2013-05-27 |
Rating | 2.00/5 Total 4 Ratings |
Developer | John Tantalo |
Payment Type | free |
Extension Website | https://github.com/tantalor/control-spotify-chrome-ext |
Help Page URL | https://github.com/tantalor/control-spotify-chrome-ext/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Control Spotify", "description": "Play and pause Spotify.", "version": "1.0", "content_scripts": [ { "matches": [ "https:\/\/play.spotify.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "inject.js" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "pause.png" } } |