Hotkeys for YouTube Music™
Hotkeys for YouTube Music! Use your keyboard's media keys to play, pause, stop, skip, go back, like and dislike on the YouTube…
Hotkeys for YouTube Music™คืออะไร?
Hotkeys for YouTube Music™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PaulHansen และคุณลักษณะหลักของมันคือ "Hotkeys for YouTube Music! Use your keyboard's media keys to play, pause, stop, skip, go back, like and dislike on the YouTube…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hotkeys for YouTube Music™
ดาวน์โหลดไฟล์ส่วนขยาย Hotkeys for YouTube Music™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hotkeys for YouTube Music! Use your keyboard's media keys to play, pause, stop, skip, go back, like and dislike on the YouTube Music™ website. The hotkeys work while you are in other programs too. This is for the recently launched https://music.youtube.com Keys can be rebound by going to chrome://extensions/shortcuts in chrome's address bar. If it isn't working, try reloading the player using F5, disable any other extensions and close any other music programs etc. and try restarting your PC if it continues. If this helps you, consider donating: https://www.paypal.com/donate?hosted_button_id=NGT2AJ6WXEXEQ I make no money from this otherwise. YouTube Music is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hotkeys for YouTube Music™ |
ID | ggjkoecdjegahefiaibfnjgkebhijgpf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hotkeys-for-youtube-music/ggjkoecdjegahefiaibfnjgkebhijgpf |
คำอธิบาย | Hotkeys for YouTube Music! Use your keyboard's media keys to play, pause, stop, skip, go back, like and dislike on the YouTube… |
ขนาดไฟล์ | 10.39 KB |
จำนวนการติดตั้ง | 10,339 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2023-12-06 |
วันที่เผยแพร่ | 2019-01-16 |
คะแนน | 4.76/5 รวมทั้งหมด 122 คะแนน |
ผู้พัฒนา | PaulHansen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hotkeys for YouTube Music\u2122", "short_name": "Hotkeys Youtube Music\u2122", "version": "1.0.0", "icons": { "128": "icon128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/music.youtube.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab" ], "browser_action": [], "commands": { "next-track": { "description": "Next track", "global": true, "suggested_key": { "default": "MediaNextTrack" } }, "play-pause": { "description": "Play\/Pause", "global": true, "suggested_key": { "default": "MediaPlayPause" } }, "previous-track": { "description": "Previous track", "global": true, "suggested_key": { "default": "MediaPrevTrack" } }, "stop": { "description": "Stop playback", "global": true, "suggested_key": { "default": "MediaStop" } }, "volume-a-up": { "description": "Volume Up", "global": true, "suggested_key": { "default": "Ctrl+Shift+0" } }, "volume-down": { "description": "Volume Down", "global": true, "suggested_key": { "default": "Ctrl+Shift+9" } }, "thumbs-a-up": { "description": "Thumbs Up", "global": true }, "thumbs-down": { "description": "Thumbs Down", "global": true } } } |