You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Firefox enabling privacy.resistFingerprinting in about:config breaks the detection of Ctrl because with the keydown event the modifier keys (ctrl, alt, shift) is silenced.
Testable with the following code from console:
Hence my suggestion would be to consider switching the Ctrl using hotkeys to the click event if possible, as I suspect others also could run into this limitation.
The text was updated successfully, but these errors were encountered:
Correction, e.ctrlKey is also available in 'keydown'.
So this can help with Giga Ctrl, and Generator State Config from Settings, but not with Mastery buy row (showing available before click). Nature Token convert could also work, but no preview.
In Firefox enabling privacy.resistFingerprinting in about:config breaks the detection of Ctrl because with the keydown event the modifier keys (ctrl, alt, shift) is silenced.
Testable with the following code from console:
So with this the event for Ctrl (keyCode 17) and the other modifier keys are not firing.
But I found that with the click event it's still detecting the modifier keys:
Hence my suggestion would be to consider switching the Ctrl using hotkeys to the click event if possible, as I suspect others also could run into this limitation.
The text was updated successfully, but these errors were encountered: