您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Zero distractions, pure wiki.
当前为
// ==UserScript== // @name Fandom - Cut the Crap // @version 2.1 // @description Zero distractions, pure wiki. // @author samerop // @license MIT // @match https://*.fandom.com/* // @run-at document-start // @namespace https://gf.qytechs.cn/users/1426714 // ==/UserScript== (function() { 'use strict'; const selectorsToHide = [ ".page__right-rail", "#global-explore-navigation", ".notifications-placeholder" ]; const hideCss = selectorsToHide.join(',\n') + ' { display: none !important; }'; const styleFixesCss = ` .fandom-community-header__background { width: 100% !important; } .main-container { width: 100% !important; margin-left: 0 !important; } body { margin-left: 0 !important; } .fandom-community-header__background.fitCenter { background-size: cover !important; } `; const style = document.createElement('style'); style.textContent = hideCss + '\n' + styleFixesCss; document.documentElement.appendChild(style); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址