Disable Refresh on Scroll

Disables pull-to-refresh but allows overscroll glow effects.

// ==UserScript==
// @name     Disable Refresh on Scroll
// @description     Disables pull-to-refresh but allows overscroll glow effects.
// @author   junior1q94
// @match    *://*/*
// @version  1.1
// @grant    GM_addStyle
// @namespace https://gf.qytechs.cn/users/1113142
// ==/UserScript==

(function() {
  'use strict';

  GM_addStyle(`
    html, body {
      /* Disables pull-to-refresh but allows overscroll glow effects. */
      overscroll-behavior-y: contain;
    }
  `);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址