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 |
官方網址 | 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" } } } |