您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
做题别看难度了哥
当前为
// ==UserScript== // @name Luogu Diff Modify // @namespace http://tampermonkey.net/ // @version 0.1 // @description 做题别看难度了哥 // @author You // @match https://www.luogu.com.cn/problem/* // @grant none // @license MIT // ==/UserScript== (function() { window.onload = function () { var num=document.getElementsByClassName("info-rows")[0].childElementCount; document.getElementsByClassName("info-rows")[0].children[num-2].children[1].remove(); var Diff=document.createElement("span"); Diff.innerHTML='<span data-v-8b7f80ba=""><a data-v-0640126c="" data-v-263e39b8="" data-v-ea4425c6="" href="/problem/list?difficulty=7" class="color-none">🤣<span data-v-263e39b8="" style="color: red;background: linear-gradient(to right, rgb(254, 76, 97),rgb(243, 156, 17),rgb(255, 193, 22),rgb(82, 196, 26), rgb(52, 152, 219),rgb(157, 61, 207),rgb(14, 29, 105));-webkit-background-clip: text;-webkit-text-fill-color: transparent;">不是哥们你做题看难度啊</span>🤣</a></span>'; document.getElementsByClassName("info-rows")[0].children[num-2].appendChild(Diff); } })();