Yousee music shortcuts
Yousee music shortcuts for your music needs. Use the media keys to control the music.
Yousee music shortcutsคืออะไร?
Yousee music shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martinkors และคุณลักษณะหลักของมันคือ "Yousee music shortcuts for your music needs. Use the media keys to control the music."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yousee music shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Yousee music shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an app for Google Chrome that enables you to use your media keys for controlling Yousee Music
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | eaclcdhgjceodeecmkolehodplhifmob |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/yousee-music-shortcuts/eaclcdhgjceodeecmkolehodplhifmob |
คำอธิบาย | Yousee music shortcuts for your music needs. Use the media keys to control the music. |
ขนาดไฟล์ | 8.74 KB |
จำนวนการติดตั้ง | 232 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2019-01-23 |
วันที่เผยแพร่ | 2019-01-23 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | martinkors |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,da |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_chrome_extension_name__", "version": "1.0.2", "description": "__MSG_chrome_extension_description__", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon16.png", "24": "icons\/icon24.png", "32": "icons\/icon32.png" }, "default_title": "__MSG_chrome_extension_name__" }, "author": "martinkors", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/musik.yousee.dk\/*" ], "js": [ "contentscript.js" ] } ], "commands": { "prev": { "suggested_key": { "default": "MediaPrevTrack", "mac": "MediaPrevTrack" }, "description": "__MSG_chrome_extension_previous__", "global": true }, "play-pause": { "suggested_key": { "default": "MediaPlayPause", "mac": "MediaPlayPause" }, "description": "__MSG_chrome_extension_play__", "global": true }, "next": { "suggested_key": { "default": "MediaNextTrack", "mac": "MediaNextTrack" }, "description": "__MSG_chrome_extension_next__", "global": true }, "stop": { "suggested_key": { "default": "MediaStop", "mac": "MediaStop" }, "description": "__MSG_chrome_extension_play__", "global": true } }, "background": { "scripts": [ "background.js" ] } } |