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