ZodGame-首页精简显示

将zod首页的轮播、排行版、热帖版块屏蔽掉

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);
})();