Webplayer Hotkeys - Shortcuts for web players
Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.
什么是Webplayer Hotkeys - Shortcuts for web players?
Webplayer Hotkeys - Shortcuts for web players是由Gabriel Duarte开发的Chrome扩展程序,该扩展的主要功能是“Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.”。
扩展截图
下载Webplayer Hotkeys - Shortcuts for web players扩展crx文件
下载Webplayer Hotkeys - Shortcuts for web players扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome extension that assigns hotkeys and shortcuts to play/pause, and to switch music (next and previous). If no player is currently opened, it fires up Spotify. If there is more player tabs than one, it follows this order of priority: Spotify > Deezer > SoundCloud > Youtube Works with: • Spotify • Deezer • SoundCloud • Youtube
扩展基本信息
名称 | Webplayer Hotkeys - Shortcuts for web players |
ID | ikmkicnmahfdilneilgibeppbnolgkaf |
官方URL | https://chromewebstore.google.com/detail/webplayer-hotkeys-shortcu/ikmkicnmahfdilneilgibeppbnolgkaf |
简介 | Assign hotkeys to play/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music. |
文件大小 | 52.04 KB |
安装次数 | 887 |
当前版本 | 1.3.2 |
更新时间 | 2020-01-02 |
上架时间 | 2020-01-02 |
评分 | 4.24/5 共17次评分 |
开发者 | Gabriel Duarte |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/GabrielDuarteM/Webplayer-Hotkeys |
帮助页面URL | https://github.com/GabrielDuarteM/Webplayer-Hotkeys/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webplayer Hotkeys - Shortcuts for web players", "version": "1.3.2", "description": "Assign hotkeys to play\/pause, and switch music. Works with Spotify, Deezer, SoundCloud, Youtube and Youtube Music.", "icons": { "128": "icon.png" }, "author": "Gabriel Duarte", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "prev": { "description": "Previous music", "suggested_key": "Alt+Shift+Comma", "global": true }, "play": { "description": "Play\/pause", "suggested_key": "Alt+Shift+P", "global": true }, "next": { "description": "Next music", "suggested_key": "Alt+Shift+Period", "global": true } }, "homepage_url": "https:\/\/github.com\/GabrielQDuarte\/Webplayer-Hotkeys\/tree\/master", "incognito": "split", "permissions": [ "*:\/\/*.spotify.com\/*", "*:\/\/*.youtube.com\/*", "*:\/\/soundcloud.com\/*", "*:\/\/*.deezer.com\/*", "tabs" ] } |