Recensioni per YouTube Music Hotkeys
YouTube Music Hotkeys di Marcin Rataj
Recensione di Utente Firefox 12976263
Valutata 4 su 5
di Utente Firefox 12976263, 7 anni faWorks 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 :)
Replica dello sviluppatore
pubblicato il 7 anni faThank you! Great workaround while we wait for https://bugzilla.mozilla.org/show_bug.cgi?id=1303384 :)