页面顶部下拉自动刷新,排除特定网站
当前为
// ==UserScript==
// @name 页面下拉刷新(精简版)
// @namespace https://example.com
// @version 1.3
// @description 页面顶部下拉自动刷新,排除特定网站
// @match *://*/*
// @exclude https://greasyfork.org/*
// @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();
}
});
})();