// ==UserScript== // @name 洛谷学术神器 // @namespace http://tampermonkey.net/ // @version 0.101 // @description 隐藏:犇犇、讨论、私信、通知等,专心刷题! // @author TNT° // @match *://*.luogu.com.cn/* // @match *://*.luogu.org/* // @grant none // @downloadURL none // ==/UserScript== (function () { $('document').ready(function(){setTimeout(function () { var benben_01 = 0, discuss_01 = 0, chat_01 = 0, notification_01 = 0; $sidebar = $('#app-old .lg-index-content .lg-right.am-u-lg-3'); $firstele = $($sidebar.children()[0]); $finder = $(`
`); $finder.insertAfter($firstele); var css=""; css += [".lg-index-benben>div+div+div {display: none!important}" ].join("\n"); },500)}); })();