Disable Refresh on Scroll

Disable Refresh on Scroll for all sites

2023-06-27 يوللانغان نەشرى. ئەڭ يېڭى نەشرىنى كۆرۈش.

// ==UserScript==
// @name     Disable Refresh on Scroll
// @description     Disable Refresh on Scroll for all sites
// @match        *://*/*
// @version  1.0
// @grant    GM_addStyle
// @namespace https://greasyfork.org/users/1113142
// ==/UserScript==

(function() {
  'use strict';

  GM_addStyle(`
    body, html {
      overscroll-behavior: none;
    }
  `);
})();