warmane.com decancer

19/02/2020, 10:16:26

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

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