When working with online editor, the back gesture on a Mac can become very frustrating. Here are some helpful commands disable the back gesture:
# Disable back gesture in specific apps
# Chrome
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool FALSE
# FireFox
defaults write org.mozilla.firefox AppleEnableSwipeNavigateWithScrolls -bool FALSE
# Brave
defaults write com.brave.Browser AppleEnableSwipeNavigateWithScrolls -bool FALSE
# Safari
defaults write com.apple.Safari AppleEnableSwipeNavigateWithScrolls -bool FALSE
You'll have to restart your browser for the change to take effect. To turn back on, change FALSE to TRUE.
doesn't work