SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Was ist SoundCloud Keyboard Shortcuts?
SoundCloud Keyboard Shortcuts ist eine Chrome-Erweiterung, die von David Yang entwickelt wurde, und ihr Hauptmerkmal ist "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".
Erweiterungsscreenshots
SoundCloud Keyboard Shortcuts-Erweiterungs-CRX-Datei herunterladen
Laden Sie SoundCloud Keyboard Shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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**
Grundlegende Informationen zur Erweiterung
Name | SoundCloud Keyboard Shortcuts |
ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
Offizielle URL | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
Beschreibung | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
Dateigröße | 11.36 KB |
Installationsanzahl | 132 |
Aktuelle Version | 0.0.0.2 |
Letztes Update | 2019-06-01 |
Veröffentlichungsdatum | 2019-06-01 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | David Yang |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/davidbobyang/soundcloud-hotkeys |
Unterstützte Sprachen | 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" } } |