Open umgpy opened 5 days ago
It would be nice to switch instances by tapping the screen with two or three fingers or any other gesture(s)
Translate Web Pages extension implements it like this for reference here
// show/hide popup on 3 finger tap window.addEventListener("touchstart", (e) => { if (e.touches.length == 3) { if (rootElement.isConnected) { hidePopup(); } else { showPopup(); } } });
The accesibility issue you are bringing here worth the discussion. I would suggest give some detail on this to work on.
It would be nice to switch instances by tapping the screen with two or three fingers or any other gesture(s)
Translate Web Pages extension implements it like this for reference here