Spotify Controller
Controll your Spotify player via shortcut commands
Qu'est-ce que Spotify Controller ?
Spotify Controller est une extension Chrome développée par Elias Wennerlund, et sa fonction principale est "Controll your Spotify player via shortcut commands".
Captures d'Écran de l'Extension
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
Are you tired of switching tabs just to change song? With Spotify Controller you can use shortcut commands instead! Standard commands: Back button: Alt+Shift+D Pause/Play: Alt+Shift+F Next button: Alt+Shift+G You can also add shortcuts to the Shuffle and Repeat buttons. If you want to change the commands, go to chrome://extensions/shortcuts
Informations de Base sur l'Extension
Nom | |
ID | jpjbjbgjbicfeifjclhojfelcifcndnh |
URL Officiel | https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh |
Description | Controll your Spotify player via shortcut commands |
Taille du Fichier | 15.11 KB |
Nombre d'Installations | 3,000 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2021-06-04 |
Date de Publication | 2020-08-24 |
Évaluation | 3.86/5 Total 7 Évaluations |
Développeur | Elias Wennerlund |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Controller", "description": "Controll your Spotify player via shortcut commands", "author": "Elias Wennerlund", "version": "1.2.0", "permissions": [ "tabs", "commands" ], "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "128": "128.png" } }, "commands": { "prev": { "suggested_key": { "default": "Alt+Shift+D" }, "description": "Back button", "global": false }, "play-pause": { "suggested_key": { "default": "Alt+Shift+F" }, "description": "Play\/Pause button", "global": false }, "next": { "suggested_key": { "default": "Alt+Shift+G" }, "description": "Next button", "global": false }, "shuffle": { "description": "Shuffle button" }, "repeat": { "description": "Repeat button" } }, "manifest_version": 2 } |