Use media keys to control Yousee Music
Press Play/Stop/Next/Prev keys to control the playback of your current playlist
什么是Use media keys to control Yousee Music?
Use media keys to control Yousee Music是由rolfba开发的Chrome扩展程序,该扩展的主要功能是“Press Play/Stop/Next/Prev keys to control the playback of your current playlist”。
下载Use media keys to control Yousee Music扩展crx文件
下载Use media keys to control Yousee Music扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enables media keys to be used while listening to music on musik.yousee.dk Version 1.6 fixes support of the latest layout changes on yousee musik.
扩展基本信息
名称 | |
ID | jhemjgkeiekljabdfenlinglfkhcfnbb |
官方URL | https://chromewebstore.google.com/detail/use-media-keys-to-control/jhemjgkeiekljabdfenlinglfkhcfnbb |
简介 | Press Play/Stop/Next/Prev keys to control the playback of your current playlist |
文件大小 | 32.92 KB |
安装次数 | 85 |
当前版本 | 1.6 |
更新时间 | 2016-12-08 |
上架时间 | 2016-12-08 |
评分 | 3.20/5 共5次评分 |
开发者 | rolfba |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Use media keys to control Yousee Music", "description": "Press Play\/Stop\/Next\/Prev keys to control the playback of your current playlist", "version": "1.6", "manifest_version": 2, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/musik.yousee.dk\/*", "http:\/\/musik.youseeplay.dk\/*", "https:\/\/musik.yousee.dk\/*", "https:\/\/musik.youseeplay.dk\/*" ], "js": [ "jquery-2.1.1.min.js", "youseeMusic.js" ] } ], "commands": { "Play\/Pause": { "suggested_key": { "default": "MediaPlayPause" }, "description": "Play\/Pause current song" }, "NextSong": { "suggested_key": { "default": "MediaNextTrack" }, "description": "Jump to next song on playlist" }, "PrevSong": { "suggested_key": { "default": "MediaPrevTrack" }, "description": "Jump to previous song on playlist" } } } |