您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
clean zdic.net ads, make page more clear
// ==UserScript== // @name cleanXdicnetAds // @namespace http://tampermonkey.net/ // @version 0.19 // @description clean zdic.net ads, make page more clear // @author [email protected] // @match *.zdic.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zdic.net // @grant none // @license MIT // @run-at document-body // ==/UserScript== (function() { 'use strict'; var css = [ '.topslot_container,[class*=adsbygoogle],header.sticky > :not(form),iframe[src*="baidu.com"]{display:none!important}', 'body.context-zh-cn header{display:flex;justify-content: center;padding: 1em;align-items: center;flex-direction: column;}', 'body.context-zh-cn{padding:0!important;}', 'header.sticky>.header_bot.res_s{display: block!important;width: 100%;}', 'body.headerMinimized header.sticky{padding:1.8em 1em 1.1em 1em!important;}', '.navigation .tabsNavigation{margin-top:30px!important}' ].join('') var style = document.createElement('style'); style.innerText = css; document.body.previousElementSibling.appendChild(style) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址