inftab.com custom background

custom background for inftab.com

// ==UserScript==
// @name inftab.com custom background
// @namespace http://tampermonkey.net/
// @version 0.3
// @description custom background for inftab.com
// @author Stijn Bousard | boossy
// @license MIT
// @match https://inftab.com/*
// @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('.wallpaper.ready { background-image: url(https://bsy.boossy.be/img/myBackground.jpg) !important; }');