Disable Back Navigation via Touchpad (overscroll-behavior: none;)

Remove overscroll on the main page content and suppress previous page navigation.

La data de 22-08-2025. Vezi ultima versiune.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name                Disable Back Navigation via Touchpad (overscroll-behavior: none;)
// @name:ja             タッチパッドで前ページに戻る機能無効化(overscroll-behavior: none;)
// @name:en             Disable Back Navigation via Touchpad (overscroll-behavior: none;)
// @namespace           https://github.com/hi2ma-bu4
// @version             1.0.0
// @description         Remove overscroll on the main page content and suppress previous page navigation.
// @description:ja      ページ本体のみのoverscrollを無くして、prevPageを抑制
// @description:en      Remove overscroll on the main page content and suppress previous page navigation.
// @author              hi2ma-bu4 (snows)
// @license             Apache-2.0
// @match               *://*/*
// @icon                data:image/svg+xml;base64,PCEtLT94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPy0tPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iX3gzMV8wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJ3aWR0aDogMjU2cHg7IGhlaWdodDogMjU2cHg7IG9wYWNpdHk6IDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPi5zdDB7ZmlsbDojMzc0MTQ5O308L3N0eWxlPjxnPjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0zMzMuNjUzLDQxLjM0OUg0OC43NjljLTcuMTg3LDAtMTMuMDMxLDUuODQ4LTEzLjAzMSwxMy4wMjd2NjIuMTI5YzAsNy4xODQsNS44NDQsMTMuMDI4LDEzLjAzMSwxMy4wMjggaDI4Ni4yMjNjNDUuNDg0LDAsODQuMzI4LDM0LjE1Niw4OC40Myw3Ny43NThjMi4zMTMsMjQuNTM5LTUuNTE2LDQ4LjA1MS0yMi4wMzksNjYuMTk5IGMtMTYuMzA1LDE3LjkxOC0zOS41MDgsMjguMTkxLTYzLjY0NSwyOC4xOTFIMTk5Ljc2OVYyMzAuNzZjMC01LjM4Ni00LjM4Mi05Ljc3LTkuNzc0LTkuNzdjLTEuODU5LDAtMy42ODMsMC41MzEtNS4yNSwxLjUzOSBMNC41MjMsMzM3LjUyNUMxLjY5NSwzMzkuMzIyLDAuMDA0LDM0Mi40LDAsMzQ1Ljc1MmMtMC4wMDQsMy4zNTIsMS42ODQsNi40MzQsNC41MTIsOC4yNDJMMTg0Ljc1LDQ2OS4xMTkgYzEuNTc0LDEuMDA0LDMuMzksMS41MzIsNS4yNDYsMS41MzJjNS4zOTEsMCw5Ljc3NC00LjM4Myw5Ljc3NC05Ljc3di03MS4wMTZoMTM3Ljk2OWM0Ny43MjcsMCw5Mi4yOTQtMTguOTg4LDEyNS40ODktNTMuNDY1IGMzMy4xNzYtMzQuNDUsNTAuNDQ5LTc5LjczLDQ4LjY0NS0xMjcuNTA0QzUwOC4zNzksMTE2LjUwOSw0MjguNDMsNDEuMzQ5LDMzMy42NTMsNDEuMzQ5eiIgc3R5bGU9ImZpbGw6IHJnYig3NSwgNzUsIDc1KTsiPjwvcGF0aD48L2c+PC9zdmc+
// @supportURL          https://github.com/hi2ma-bu4/disable-touch-back
// @compatible          chrome
// @compatible          edge
// @compatible          opera
// @compatible          firefox
// @grant               GM.addStyle
// @run-at              document-idle
// @noframes
// ==/UserScript==

(function() {
    'use strict';

    function init() {
        try {
			GM.addStyle(`
html, body {
  overscroll-behavior-x: none;
}
`);
		} catch (e) {
			console.warn(e);
		}
    }

    init();
})();