SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Vad är SoundCloud Keyboard Shortcuts?
SoundCloud Keyboard Shortcuts är en Chrome-tillägg utvecklad av David Yang, och dess huvudfunktion är "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".
Tilläggsskärmbilder
Ladda ner SoundCloud Keyboard Shortcuts-förlängningens CRX-fil
Ladda ner SoundCloud Keyboard Shortcuts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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** Grundläggande Information om Tillägg
| Namn | |
| ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
| Officiell webbadress | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
| Beskrivning | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
| Filstorlek | 11.36 KB |
| Antal Installationer | 132 |
| Aktuell Version | 0.0.0.2 |
| Senast Uppdaterad | 2019-06-01 |
| Publiceringsdatum | 2019-06-01 |
| Betyg | 3.67/5 Totalt 3 Betyg |
| Utvecklare | David Yang |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/davidbobyang/soundcloud-hotkeys |
| Stödda Språk | 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"
}
} | |