图寻自信模式

在对局中隐藏对方的所有信息以及每轮双方血量的变化。应用于图寻除挑战以外的页面,可在篡改猴管理面板处自行开关此插件。

目前為 2024-08-21 提交的版本,檢視 最新版本

// ==UserScript==
// @name         图寻自信模式
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  在对局中隐藏对方的所有信息以及每轮双方血量的变化。应用于图寻除挑战以外的页面,可在篡改猴管理面板处自行开关此插件。
// @author       专业航线规划员
// @match        https://tuxun.fun/*
// @exclude      https://tuxun.fun/challenge/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = `
        .hudHealthBarBox___BPbp6 { display: none !important; }
        .hudHealthBarInner___atsdx span { display: none !important; }
        .roundScore___OWkm_ { display: none !important; }
        .css-i874aq.ant-divider-horizontal { display: none !important; }
        .vs___oRM_X { display: none !important; }
        .avatarCover___tYu0C { background-image: none !important; background-color: white; }
        .playerName___IKlNQ { display: none !important; }
        .userName___MXV57 { display: none !important; }
        .mapResult___uG4SH { display: none !important; }
    `;

    document.head.appendChild(style);
})();

QingJ © 2025

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