// ==UserScript== // @name B站动态头图 // @namespace https://cocoa.chino // @version 1.0.0 // @description 自 欺 欺 人,但是自己开心就好。请自行换图,默认智乃厨XD // @author yui_san // @grant GM_addStyle // @run-at document-start // @match *://*.space.bilibili.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` .h-inner{ background-image: url(https://i0.hdslb.com/bfs/space/495a961d2a11279c35ad01ff3e50159fbea414a3.png@2560w_400h_100q_1o.webp)!important; /*借用@秋雨冬落_的头图,感谢*/ background-position: 60% 77%!important; /*background-repeat: repeat-x; background-size: contain!important;*/ } `; 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); } })();