洛谷广告屏蔽

屏蔽洛谷的广告

安装此脚本?
作者推荐脚本

您可能也喜欢犇犇爬虫辅助

安装此脚本
// ==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
// ==/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...
})();