Open
Description
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();
}
}
});