warmane.com decancer

19/02/2020, 10:16:26

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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;}');