// ==UserScript== // @name 洛谷广告屏蔽 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 屏蔽洛谷的广告 // @author songhongyi // @match https://www.luogu.com.cn/problem/* // @match https://www.luogu.com.cn/contest/* // @match https://www.luogu.com.cn/training/* // @grant unsafeWindow // @downloadURL none // ==/UserScript== (function() { 'use strict'; var document=unsafeWindow.document; window.onload=function(){setTimeout(function() { document.querySelector("div[data-v-0a593618]").remove(); console.log("广告已经消除"); },500)} // Your code here... })();