Mouse click actions getting triggered on right-click also

Thanks - it looks like while we check to avoid running actions on a mousedown event, mouseups (which would seem unlikely but can happen in situations like the mac+chrome one) and pointerup (for windows) wasn’t filtering this out. I’ve made a fix for the next version after 4.0.0.

In the mean time if this is a high priority issue to avoid, the workaround would be to use a run javascript action and use a check to determine if a right/control click was used instead of the Go to URL action. It’d be something like:

if(event.ctrlKey == true || event.button != 0) {
    return;
}

// do action you want
location.href = "http://example.com";
1 Like