Trello Background

Automatically Sets Trello Background Image

  1. // ==UserScript==
  2. // @name Trello Background
  3. // @namespace None
  4. // @version 0.4
  5. // @description Automatically Sets Trello Background Image
  6. // @author Shakil Shahadat
  7. // @include https://trello.com/b/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function setBG ()
  12. {
  13. if ( document.body.style.backgroundImage === '' ) document.body.style.backgroundImage = "url( 'http://wallpaper-gallery.net/images/nature-wallpaper/nature-wallpaper-11.jpg' )";
  14. }
  15.  
  16. var trelloBG = setInterval( setBG, 1000 );