// ==UserScript== // @name 百度去广告+Moe背景 // @namespace ??? // @version 1.0.1 // @description 使用stylus加载css // @author ?? // @grant GM_addStyle // @run-at document-start // @match *://*.baidu.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .FYB_RD { display: none } body:before { content: ""; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: -100; background-image: url(https://i0.hdslb.com/bfs/album/18bb3416bc1177f2a98dce92dd02596d29a15226.jpg); background-position: center ; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; opacity: .2 } #head{opacity: .4} #rs{opacity: .4} #form{opacity: 0.9} `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();