SoundCloud Keyboard Shortcuts
Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud
SoundCloud Keyboard Shortcutsคืออะไร?
SoundCloud Keyboard Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Yang และคุณลักษณะหลักของมันคือ "Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SoundCloud Keyboard Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย SoundCloud Keyboard Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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**
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SoundCloud Keyboard Shortcuts |
ID | ikhigoamgbflnjhdbajcpaehkjdcdokh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/soundcloud-keyboard-short/ikhigoamgbflnjhdbajcpaehkjdcdokh |
คำอธิบาย | Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud |
ขนาดไฟล์ | 11.36 KB |
จำนวนการติดตั้ง | 132 |
เวอร์ชันปัจจุบัน | 0.0.0.2 |
อัปเดตครั้งล่าสุด | 2019-06-01 |
วันที่เผยแพร่ | 2019-06-01 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | David Yang |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/davidbobyang/soundcloud-hotkeys |
ภาษาที่รองรับ | 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" } } |