Greasy Fork is available in English.
在使用洛谷是,如果回退页面或前进页面经常会遇`Request Blocked的情况,这个脚本能检测并自动刷新页面。
当前为
// ==UserScript==
// @name 避免洛谷提示Request Blocked
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 在使用洛谷是,如果回退页面或前进页面经常会遇`Request Blocked的情况,这个脚本能检测并自动刷新页面。
// @author gandyli
// @match https://www.luogu.org/*
// @match http://www.luogu.org/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (document.getElementById("app-body-new")===null)
{
location.reload();
}
})();