Control Spotify
Play and pause Spotify.
Vad är Control Spotify?
Control Spotify är en Chrome-tillägg utvecklad av John Tantalo, och dess huvudfunktion är "Play and pause Spotify.".
Ladda ner Control Spotify-förlängningens CRX-fil
Ladda ner Control Spotify-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
This extension lets you play and pause Spotify from any tab or window.
Grundläggande Information om Tillägg
Namn | |
ID | ednibkmgpamaijdfjkdhdfgeklgfbllp |
Officiell webbadress | https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp |
Beskrivning | Play and pause Spotify. |
Filstorlek | 11.05 KB |
Antal Installationer | 14 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2013-05-27 |
Publiceringsdatum | 2013-05-27 |
Betyg | 2.00/5 Totalt 4 Betyg |
Utvecklare | John Tantalo |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/tantalor/control-spotify-chrome-ext |
Hjälpsida URL | https://github.com/tantalor/control-spotify-chrome-ext/issues |
Stödda Språk | 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" } } |