38

On my Surface Pro, when I drag my finger across the browser window, Chrome will navigate back and forth through the browsing history.

example video
(source: gifyoutube.com)

click to open on Youtube](https://www.youtube.com/watch?v=3fXrQ9TM0eI)

How do I disable this feature?

Glorfindel
  • 4,158
Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311

4 Answers4

30
  1. Go to chrome://flags/#overscroll-history-navigation

  2. Disable the Overscroll history navigation experiment:

    enter image description here

Oliver Salzburg
  • 89,072
  • 65
  • 269
  • 311
11

You can also pass

--overscroll-history-navigation=0 

as startup parameter to chrome

4

It 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 false

After that close chrome and run it again.

4

Updated: Q1 2021

This can be disabled on Windows by passing the following flag on the command line:

--disable-features="TouchpadOverscrollHistoryNavigation"
jdgregson
  • 200