将zod首页的轮播、排行版、热帖版块屏蔽掉
当前为
// ==UserScript==
// @name ZodGame-首页精简显示
// @namespace https://zodgame.xyz/home.php?mod=space&uid=294326
// @version 1.0
// @description 将zod首页的轮播、排行版、热帖版块屏蔽掉
// @author 未知的动力
// @match https://zodgame.xyz/*
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
const headEle = document.head;
const styleEle = document.createElement("style");
const topListStyleText = document.createTextNode(`#toplistbox_7ree {display: none !important;}`);
const topBtnStyleText = document.createTextNode(`div.mn img#category__img {display: none !important;}`);
styleEle.append(topListStyleText, topBtnStyleText);
headEle.append(styleEle);
})();