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是由David Yang开发的Chrome扩展程序,该扩展的主要功能是“Adds keyboard shortcuts (hotkeys) to play/pause, play next, play previous, and like tracks in SoundCloud”。
扩展截图
下载SoundCloud Keyboard Shortcuts扩展crx文件
下载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" } } |