YouTube Music Hotkeys에 대한 리뷰
YouTube Music Hotkeys 제작자: Marcin Rataj
리뷰 53개
- 5점 만점에 5점Firefox 사용자 13642632 님, 7년 전
- 5점 만점에 3점Chris Skipio 님, 7년 전It's ok, but I would prefer to map my media keyboard keys, instead of some random key combination :S
- 5점 만점에 4점Maarten Ronteltap 님, 7년 전Hey Marcin!
1) Thanks for the update, I installed it and restarted my Firefox, but...it still doesn't work! It still behaves the same way..."MediaPrevTrack" and "MediaNextTrack" are still just playing/pausing the song instead of going to the previous track or next track. I am using Firefox 66.0.2 (64-bit) on Windows 10 Home (version 1803). This is the type of laptop that I am using: https://support.hp.com/us-en/product/hp-envy-15-aq100-x360-convertible-pc/12499186/document/c05270626
Let me know if I can help you with anything to get this fixed!
2) Thanks for the suggestion, I have voted for this bug on the bugzilla site!개발자 답글
7년 전에 게시됨It looks that "MediaPrevTrack" and "MediaNextTrack" playing/pausing are a bug in Firefox:
https://bugzilla.mozilla.org/show_bug.cgi?id=1251795#c13
https://github.com/lidel/google-music-hotkeys/issues/12 - 5점 만점에 5점Firefox 사용자 14658592 님, 7년 전Does what is says. I can't think of a higher praise than that :)
Thanks for making this. - 5점 만점에 5점Firefox 사용자 14628434 님, 8년 전Excellent, especially after having issues with the desktop app freezing
- 5점 만점에 5점Firefox 사용자 14486181 님, 8년 전
- 5점 만점에 2점Firefox 사용자 14440489 님, 8년 전Worked for 5 mins, then suddenly all assigned media keys on my keyboard just pause/play the track.
Edit: I've played around with this. I can only seem to add 1 media key function (MediaNextTrack/MediaPrevTrack/MediaPlayPause). No matter if I add another one to another function ONLY the first added shortcut will work. I'm totally baffled. - 5점 만점에 5점Hitesh Gupta 님, 8년 전
개발자 답글
8년 전에 게시됨This is a bug caused by macOS hijacking keys, see https://github.com/lidel/google-music-hotkeys/issues/8 for workarounds.- 5점 만점에 5점Firefox 사용자 13786639 님, 9년 전
- 5점 만점에 5점Firefox 사용자 13748985 님, 9년 전
- 5점 만점에 4점Firefox 사용자 12976263 님, 9년 전Works very well !!!
For those who want to use keyboard media keys for control, i've done a little AutoHotkey script:
;next song
Media_Next::
IfWinExist, ahk_class MozillaWindowClass
WinActivate
Send !+0
return
;previous song
Media_Prev::
IfWinExist, ahk_class MozillaWindowClass
WinActivate
Send !+9
return
;play/pause
Media_Play_Pause::
IfWinExist, ahk_class MozillaWindowClass
WinActivate
Send !+8
return
You're welcome :)개발자 답글
9년 전에 게시됨Thank you! Great workaround while we wait for https://bugzilla.mozilla.org/show_bug.cgi?id=1303384 :) - 5점 만점에 2점Firefox 사용자 13627116 님, 9년 전Unfortunately the Next Song hotkey (Ctrl+Shift+0) does not work. the other two do.
개발자 답글
9년 전에 게시됨CTRL+SHIFT+0 is hijacked by.. MS Windows, please try fix at:
https://github.com/lidel/google-music-hotkeys/issues/3#issuecomment-352142246
I agree it is unfortunate, but I hope link above will help.