Greasy Fork is available in English.

Down with the sloth!

Replace the header background on /r/Guildwars2/

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

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.

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

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

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     Down with the sloth!
// @include https://*.reddit.com/r/Guildwars2/*
// @description:en Replace the header background on /r/Guildwars2/
// @run-at document-start
// @grant    GM_addStyle
// @version 1.6
// @namespace https://greasyfork.org/users/31925
// @description Replace the header background on /r/Guildwars2/
// ==/UserScript==

GM_addStyle ("#header::after , #header::before {display: none !important;}");
var position = Math.floor((Math.random() * 100) + 1); 
var picarray = ["http://i.imgur.com/ea5u5eO.jpg" , "http://i.imgur.com/TEJetJY.jpg" , "http://i.imgur.com/9w3wJve.jpg" , "http://i.imgur.com/UULnDzW.jpg" , "http://i.imgur.com/h0hZfon.jpg" , "http://i.imgur.com/jMsPyQR.jpg" , "http://i.imgur.com/HoiSUqN.jpg" , "http://i.imgur.com/oCYUddy.jpg"]
var picture = picarray[Math.floor(Math.random() * picarray.length)]; 

document.addEventListener("load", function() {
var costumheader = document.getElementById("header");
costumheader.style.backgroundImage = "url('" + picture + "')";
costumheader.style.backgroundPosition = "50% " + position + "%";
costumheader.style.backgroundSize = "cover";
}, true);

// if you dont like the parallax scroll effect delete or rem the script after this line.

document.onscroll = function() {
parallax = "50% " + (position + (-window.scrollY / 15)).toFixed(1) + "%";
document.getElementById("header").style.backgroundPosition = parallax; };