Is it possible to navigate forwards and backwards through page history when using a floating webview, via keyboard shortcut, like you can in normal web browsers?
you can assign the action to keyboard shortcuts. If you want them to be only active while the floating menu is visible you can use a conditional activation group with the “visible_floating_menu_identifiers” variable
Hey @Andreas_Hegenberg. Sorry for the super long delay. I've tried doing what you've listed here to assign the window.history.back(); event to a button.
When I do this, nothing happens. (The event does trigger when injecting via console in the webview's inspector). But the event doesn't trigger when assigned to the button.
Would you mind trying it on your end to make sure it works?
Same issue. I'd like to bind mouse gesture through BTT to navigate between history. But the approach using predefined action mentioned by Anfreas_Hegenberg does not work. Any insight?
@RobRob could you share your preset? I tried with the standard "BrowserExample" preset, but it is working fine there. Is here maybe some whitespace in the menu name or something like this?
Possibly try with the UUID of the webview item instead (right-click the item to get that id)
@Andreas_Hegenberg Well... I feel stupid. It works! I was pushing a "forward" button the whole time. Switching the javascript to window.history.back(); works!