SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Wat is SoundCloud Keyboard Shortcuts?
SoundCloud Keyboard Shortcuts is een Chrome-extensie ontwikkeld door David Yang, en de belangrijkste functie is "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".
Extensie Screenshots
Download het CRX-bestand van de extensie SoundCloud Keyboard Shortcuts
Download SoundCloud Keyboard Shortcuts-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
Default keyboard shortcuts are:
Play/Pause: Alt+Shift+P
Next: Alt+Shift+Period
Previous: Alt+Shift+Comma
Like: Alt+Shift+L
**On Mac, replace Alt with Option** Basisinformatie over de Extensie
| Naam | |
| ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
| Officiële URL | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
| Beschrijving | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
| Bestandsgrootte | 11.36 KB |
| Aantal Installaties | 132 |
| Huidige Versie | 0.0.0.2 |
| Laatst Bijgewerkt | 2019-06-01 |
| Publicatiedatum | 2019-06-01 |
| Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | David Yang |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/davidbobyang/soundcloud-hotkeys |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SoundCloud Keyboard Shortcuts",
"description": "Adds keyboard shortcuts (hotkeys) to play\/pause, play next, play previous, and like tracks in SoundCloud",
"version": "0.0.0.2",
"icons": {
"128": "icon128.png"
},
"background": {
"scripts": [
"eventPage.js"
],
"persistent": false
},
"commands": {
"play-pause": {
"description": "Play\/pause",
"suggested_key": "Alt+Shift+P"
},
"next": {
"description": "Next track",
"suggested_key": "Alt+Shift+Period"
},
"previous": {
"description": "Previous track",
"suggested_key": "Alt+Shift+Comma"
},
"like-unlike": {
"description": "Like\/unlike track",
"suggested_key": "Alt+Shift+L"
}
},
"permissions": [
"https:\/\/soundcloud.com\/*"
],
"page_action": {
"default_title": "SoundCloud Keyboard Shortcuts"
}
} | |