YouTube Music Hotkeys
Use keyboard shortcuts to control YouTube Music
什么是YouTube Music Hotkeys?
YouTube Music Hotkeys是由lidel开发的Chrome扩展程序,该扩展的主要功能是“Use keyboard shortcuts to control YouTube Music”。
扩展截图
下载YouTube Music Hotkeys扩展crx文件
下载YouTube Music Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This browser extension lets you control background playback of YouTube Music (previously known as Google Music) without switching tabs. That is all.
Features:
browser action button
left click toggles playback, context click displays more options
open and pin YouTube Music if it is not open yet
toggle playback: Ctrl+Shift+8
previous song: Ctrl+Shift+9
next song: Ctrl+Shift+0
autoplay when &autoplay=true is found in URL
One can customize default shortcuts via chrome://extensions/configure 扩展基本信息
| 名称 | |
| ID | fgjkdpncbpnlhbdbmelbhmapblgaamkl |
| 官方URL | https://chromewebstore.google.com/detail/youtube-music-hotkeys/fgjkdpncbpnlhbdbmelbhmapblgaamkl |
| 简介 | Use keyboard shortcuts to control YouTube Music |
| 文件大小 | 40.74 KB |
| 安装次数 | 857 |
| 当前版本 | 1.9.0 |
| 更新时间 | 2021-05-04 |
| 上架时间 | 2019-10-13 |
| 评分 | 5.00/5 共11次评分 |
| 开发者 | lidel |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lidel/google-music-hotkeys |
| 帮助页面URL | https://github.com/lidel/google-music-hotkeys/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Music Hotkeys",
"version": "1.9.0",
"description": "Use keyboard shortcuts to control YouTube Music",
"homepage_url": "https:\/\/github.com\/lidel\/google-music-hotkeys",
"author": "Marcin Rataj",
"icons": {
"128": "Play_music_triangle.png"
},
"permissions": [
"https:\/\/play.google.com\/music\/listen*",
"https:\/\/podcasts.google.com\/*",
"https:\/\/music.youtube.com\/*",
"contextMenus",
"tabs"
],
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_action": {
"browser_style": true,
"default_icon": {
"128": "Play_music_triangle.png"
}
},
"commands": {
"toggle-playback": {
"suggested_key": {
"default": "Ctrl+Shift+8",
"windows": "Alt+Shift+8"
},
"description": "Toggle Playback"
},
"previous-song": {
"suggested_key": {
"default": "Ctrl+Shift+9",
"windows": "Alt+Shift+9"
},
"description": "Previous Song"
},
"next-song": {
"suggested_key": {
"default": "Ctrl+Shift+0",
"windows": "Alt+Shift+0"
},
"description": "Next Song"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/play.google.com\/music\/listen*",
"https:\/\/podcasts.google.com\/*",
"https:\/\/music.youtube.com\/*"
],
"js": [
"browser-polyfill.min.js",
"autoplay.js"
],
"all_frames": false,
"run_at": "document_idle"
}
]
} | |