YouTube Music Hotkeys 的评价
YouTube Music Hotkeys 作者: Marcin Rataj
Firefox 用户 12976263 的评价
评分 4 / 5
来自 Firefox 用户 12976263,7 年前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 :)
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 :)
开发者回应
发布于 7 年前Thank you! Great workaround while we wait for https://bugzilla.mozilla.org/show_bug.cgi?id=1303384 :)