Spotify Controller
Control Spotify Web Player from any window/tab.
Qu'est-ce que Spotify Controller ?
Spotify Controller est une extension Chrome développée par Joe Warren, et sa fonction principale est "Control Spotify Web Player from any window/tab.".
Télécharger le fichier CRX de l'extension Spotify Controller
Téléchargez les fichiers d'extension Spotify Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | celedfadbfmnehggekllhcbpgokjkknf |
URL Officiel | https://chrome.google.com/webstore/detail/spotify-controller/celedfadbfmnehggekllhcbpgokjkknf |
Description | Control Spotify Web Player from any window/tab. |
Taille du Fichier | 167 KB |
Nombre d'Installations | 100 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-02-19 |
Date de Publication | 2014-02-19 |
Évaluation | 2.33/5 Total 3 Évaluations |
Développeur | Joe Warren |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |