Disable Refresh on Scroll

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

2023-06-27 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name     Disable Refresh on Scroll
// @description     Disables pull-to-refresh but allows overscroll glow effects.
// @match        *://*/*
// @version  1.01
// @grant    GM_addStyle
// @namespace https://greasyfork.org/users/1113142
// ==/UserScript==

(function() {
  'use strict';

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