On my Surface Pro, when I drag my finger across the browser window, Chrome will navigate back and forth through the browsing history.
How do I disable this feature?
64 Answers
Updated: Q1 2021
This can be disabled on Windows by passing the following flag on the command line:
--disable-features="TouchpadOverscrollHistoryNavigation" 1 Go to
chrome://flags/#overscroll-history-navigationDisable the Overscroll history navigation experiment:
You can also pass
--overscroll-history-navigation=0 as startup parameter to chrome
1It works for MacOS to disabling of swiping.
Just run Terminal of MacOS and paste and run this command
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool falseAfter that close chrome and run it again.
1