Disable Refresh on Scroll for all sites
当前为
// ==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;
}
`);
})();