// ==UserScript== // @name cleanXdicnetAds // @namespace http://tampermonkey.net/ // @version 0.14 // @description clean zdic.net ads, make page more clear // @author mooring@codernotes.club // @match *.zdic.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zdic.net // @grant none // @license MIT // @run-at document-body // @downloadURL none // ==/UserScript== (function() { 'use strict'; var css = [ '.topslot_container,[class*=adsbygoogle],header.sticky > :not(form){display:none!important}', 'body.context-zh-cn header{justify-content: center;padding: 1em;align-items: center;flex-direction: column;}', 'header .header_bot{display: block!important;width: 100%;}' ].join('') var style = document.createElement('style'); style.innerText = css; document.body.previousElementSibling.appendChild(style) })();