您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
19/02/2020, 10:16:26
// ==UserScript== // @name warmane.com decancer // @namespace Violentmonkey Scripts // @match https://www.warmane.com/* // @match http://armory.warmane.com/* // @match http://forum.warmane.com/* // @grant none // @version 1.0 // @author - // @description 19/02/2020, 10:16:26 // ==/UserScript== function removeElement(elementId) { // Removes an element from the document. var element = document. getElementById(elementId); element. parentNode. removeChild(element);} function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } //base and armory removeElement("page-frame"); addGlobalStyle('#page-content-wrapper { top: 70px !important; }'); addGlobalStyle('#page-content-wrapper { z-index: 1 !important; }'); addGlobalStyle('.navigation-wrapper .navigation { top: 6px !important; }'); addGlobalStyle('.navigation-wrapper .navigation-logo { top: -20px !important; transform: scaleY(0.7);}'); //forum addGlobalStyle('.above_body { top: 0px !important; z-index: 1 !important;}');