custom background for myfav.es
// ==UserScript==
// @name myfav.es custom background
// @namespace http://tampermonkey.net/
// @version 0.4
// @description custom background for myfav.es
// @author Stijn Bousard | boossy
// @match https://www.myfav.es/*
// @grant none
// ==/UserScript==
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);
}
addGlobalStyle('#upload-form.subtle-carbon-fibre #content, body.subtle-carbon-fibre { background-image: url(https://bsy.boossy.be/img/myBackground.jpg); background-size: cover; } ');