Spotify Controller
Controll your Spotify player via shortcut commands
Wat is Spotify Controller?
Spotify Controller is een Chrome-extensie ontwikkeld door Elias Wennerlund, en de belangrijkste functie is "Controll your Spotify player via shortcut commands".
Extensie Screenshots
Download het CRX-bestand van de extensie Spotify Controller
Download Spotify Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | jpjbjbgjbicfeifjclhojfelcifcndnh |
Officiële URL | https://chrome.google.com/webstore/detail/spotify-controller/jpjbjbgjbicfeifjclhojfelcifcndnh |
Beschrijving | Controll your Spotify player via shortcut commands |
Bestandsgrootte | 15.11 KB |
Aantal Installaties | 3,000 |
Huidige Versie | 1.2.0 |
Laatst Bijgewerkt | 2021-06-04 |
Publicatiedatum | 2020-08-24 |
Beoordeling | 3.86/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Elias Wennerlund |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |