Automatically Sets Trello Background Image
// ==UserScript==
// @name Trello Background
// @namespace None
// @version 0.4
// @description Automatically Sets Trello Background Image
// @author Shakil Shahadat
// @include https://trello.com/b/*
// @grant none
// ==/UserScript==
function setBG ()
{
if ( document.body.style.backgroundImage === '' ) document.body.style.backgroundImage = "url( 'http://wallpaper-gallery.net/images/nature-wallpaper/nature-wallpaper-11.jpg' )";
}
var trelloBG = setInterval( setBG, 1000 );