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 |
Eメール | [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" } } } |