SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
Apa itu SoundCloud Keyboard Shortcuts?
SoundCloud Keyboard Shortcuts adalah ekstensi Chrome yang dikembangkan oleh David Yang, dan fitur utamanya adalah "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SoundCloud Keyboard Shortcuts
Unduh file ekstensi SoundCloud Keyboard Shortcuts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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**
Informasi Dasar Ekstensi
Nama | SoundCloud Keyboard Shortcuts |
ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
URL Resmi | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
Deskripsi | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
Ukuran File | 11.36 KB |
Jumlah Instalasi | 132 |
Versi Saat Ini | 0.0.0.2 |
Terakhir Diperbarui | 2019-06-01 |
Tanggal Publikasi | 2019-06-01 |
Penilaian | 3.67/5 Total 3 Penilaian |
Pengembang | David Yang |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/davidbobyang/soundcloud-hotkeys |
Bahasa yang Didukung | 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" } } |