custom background for inftab.com
当前为
// ==UserScript==
// @name inftab.com custom background
// @namespace http://tampermonkey.net/
// @version 0.2
// @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/WERKSTATTkultur.jpg) !important; }');