Control Spotify
Play and pause Spotify.
Cos'è Control Spotify?
Control Spotify è un'estensione di Chrome sviluppata da John Tantalo, e la sua funzione principale è "Play and pause Spotify.".
Scarica il file CRX dell'estensione Control Spotify
Scarica i file di estensione Control Spotify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension lets you play and pause Spotify from any tab or window.
Informazioni di Base sull'Estensione
Nome | |
ID | ednibkmgpamaijdfjkdhdfgeklgfbllp |
URL Ufficiale | https://chrome.google.com/webstore/detail/control-spotify/ednibkmgpamaijdfjkdhdfgeklgfbllp |
Descrizione | Play and pause Spotify. |
Dimensione del File | 11.05 KB |
Conteggio Installazioni | 14 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2013-05-27 |
Data di Pubblicazione | 2013-05-27 |
Valutazione | 2.00/5 Totale 4 Valutazioni |
Sviluppatore | John Tantalo |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tantalor/control-spotify-chrome-ext |
URL della Pagina di Aiuto | https://github.com/tantalor/control-spotify-chrome-ext/issues |
Lingue Supportate | 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" } } |