页面下拉刷新(精简版)

页面顶部下拉自动刷新,排除特定网站

目前为 2025-04-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         页面下拉刷新(精简版)
// @namespace    https://example.com
// @version      1.3
// @description  页面顶部下拉自动刷新,排除特定网站
// @match        *://*/*
// @exclude      https://gf.qytechs.cn/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let startY = 0; 
    const threshold = 100; 

    document.addEventListener('touchstart', e => {
        if (window.scrollY === 0) startY = e.touches[0].clientY; 
    });

    document.addEventListener('touchmove', e => {
        if (window.scrollY === 0 && e.touches[0].clientY - startY > threshold) {
            location.reload();
        }
    });
})();

QingJ © 2025

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