#userscript to trigger #click at coordinates
function: go to fullscreen view in gallery with keyboard instead of mouse click
```js
onkeyup = function(e){
e.key=="f" && document.elementFromPoint(visualViewport.width/2, visualViewport.height/2).click()
}
```