洛谷大吉每一天

as

目前為 2022-10-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name         洛谷大吉每一天
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description as
// @description:zh让你的洛谷运势每天都是大吉!
// @author       You
// @match        https://www.luogu.com.cn*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// ==/UserScript==

$('document').ready(function(){
    var x=document.querySelectorAll(".lg-punch-result");
    var y=document.querySelectorAll(".am-u-sm-6");
    if(x[0].innerHTML=="§ 大凶 §"){
        var sum="<span id='yi' style='font-weight:bold'>宜:</span>出行<br><span style='font-size:10px;color:#7f7f7f'>一路顺风</span></br>";
        sum+="<span id='yi' style='font-weight:bold'>宜:</span>继续完成AC的题<br><span style='font-size:10px;color:#7f7f7f'>下一次就可以AC了</span></br>";
        y[0].innerHTML=sum;
    }
    x[0].innerHTML="§ 大吉 §";
    x[0].style="color:#e74c3c!important";
    y[1].innerHTML="万事皆宜";
    y[1].style="color:rgba(0, 0, 0, .75)!important";
    y[1].style="font-weight:bold";

});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址