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;
    }
  `);
})();