Down with the sloth!

Replace the header background on /r/Guildwars2/

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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