修改左侧评测状态

修改题目列表左侧评测状态为 √

目前为 2024-11-27 提交的版本。查看 最新版本

// ==UserScript==
// @name          修改左侧评测状态
// @namespace     https://www.luogu.com.cn/user/542457
// @description   修改题目列表左侧评测状态为 √
// @author        cff_0102
// @run-at        document-start
// @version       1.0
// @license       MIT
// @match         https://www.luogu.com/*
// @match         https://www.luogu.com.cn/*
// @icon          https://www.luogu.com.cn/favicon.ico
// ==/UserScript==

(function() {

    'use strict';

    function f() {
        var ele = document.querySelectorAll('span.status svg');
        for(let e of ele){
            e.innerHTML=`<svg data-v-1b44b3e6="" data-v-beeebc6e="" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="check" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class="icon svg-inline--fa fa-check" data-v-0640126c="" style="color: rgb(82, 196, 26);"><path data-v-1b44b3e6="" fill="currentColor" d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" class=""></path></svg>`;
        }
    }
    setInterval(f, 1000);



})();

QingJ © 2025

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