您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Modify and overwrite the style of the Blizzard Forums
// ==UserScript== // @name Blizzard Forum Fixer // @namespace http://tampermonkey.net/ // @version 0.1 // @description Modify and overwrite the style of the Blizzard Forums // @author Luke-L // @match https://*forums.blizzard.com/* // @grant GM_addStyle // ==/UserScript== (function () { 'use strict'; GM_addStyle(` :host nav { backdrop-filter: blur(var(--navbar-background-blur)); background: #44413f; } /* html body blz-nav { background: #44413f; background-color: #44413f; } */ .b-welcome-banner-contents { height: 160px; display: flex; max-width: 1250px; margin: 0 auto; box-sizing: border-box; padding-top: 40px; flex-direction: column; justify-content: center; } body.blizzard-homepage { background: #111217; background-color: #111217; } .wrap, #main-outlet { max-width: 1600px; padding: 10px 10px; } header.d-header { border-radius: 12px; margin-left: auto; margin-right: auto; width:1600px; background-color: rgb(45 45 45 / 100%); box-shadow: 0px 0px 6px black; } html body blz-nav { display: none; } .d-header-wrap { margin-top: 30px; } .b-welcome-banner { background-position: 50% 20%; } `); })();