SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Cos'è SoundCloud Keyboard Shortcuts?
SoundCloud Keyboard Shortcuts è un'estensione di Chrome sviluppata da David Yang, e la sua funzione principale è "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SoundCloud Keyboard Shortcuts
Scarica i file di estensione SoundCloud Keyboard Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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**
Informazioni di Base sull'Estensione
Nome | SoundCloud Keyboard Shortcuts |
ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
URL Ufficiale | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
Descrizione | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
Dimensione del File | 11.36 KB |
Conteggio Installazioni | 132 |
Versione Corrente | 0.0.0.2 |
Ultimo Aggiornamento | 2019-06-01 |
Data di Pubblicazione | 2019-06-01 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | David Yang |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/davidbobyang/soundcloud-hotkeys |
Lingue Supportate | 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" } } |