Bewertungen für YouTube Music Hotkeys
YouTube Music Hotkeys von Marcin Rataj
5 Bewertungen
- Bewertet mit 4 von 5 Sternenvon Yoshimano, vor 6 Jahren
- Bewertet mit 4 von 5 Sternenvon Firefox-Benutzer 14468385, vor 6 JahrenVery simple plugin that does a good job asking for minimal permissions. The keyboard based playback control is kinda weird - and isn't fully compatible with my keyboard media keys (it plays/pauses but won't respect the track jump keys), but is still pretty nice.
- Bewertet mit 4 von 5 Sternenvon dpq06, vor 7 JahrenHotkeys don't work unless Firefox is the active window, so it's not useful if I'm using another program. I'm not sure if that's meant to be possible with this but the description says "lets you control background playback".
Antwort des Entwicklers
geschrieben am vor 7 JahrenBackground playback means "background tab". Firefox does not provide API for setting Global shortcuts (that work when browser window is not focused) yet: https://bugzilla.mozilla.org/show_bug.cgi?id=1411795 - Bewertet mit 4 von 5 Sternenvon Maarten Ronteltap, vor 7 JahrenHey 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!Antwort des Entwicklers
geschrieben am vor 7 JahrenIt 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 - Bewertet mit 4 von 5 Sternenvon Firefox-Benutzer 12976263, vor 9 JahrenWorks 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 :)Antwort des Entwicklers
geschrieben am vor 9 JahrenThank you! Great workaround while we wait for https://bugzilla.mozilla.org/show_bug.cgi?id=1303384 :)