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 هو إضافة Chrome تم تطويرها بواسطة rolfba، والميزة الرئيسية لها هي "Press Play/Stop/Next/Prev keys to control the playback of your current playlist".
تحميل ملف CRX للإضافة Use media keys to control Yousee Music
قم بتنزيل ملفات الامتداد Use media keys to control Yousee Music بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } } |