Background changer

changes background on the web

  1. // ==UserScript==
  2. // @name Background changer
  3. // @namespace lat.netne.net
  4. // @version 0.1
  5. // @include http://*
  6. // @include https://*
  7. // @include https://www.youtube.com/
  8. // @include https://www.google.com/
  9. // @description changes background on the web
  10. // @author Warsoldier
  11. // ==/UserScript==
  12.  
  13. window.onload = BG_change;
  14. var isVisible = true;
  15.  
  16. function BG_change(){
  17. if(isVisible){
  18. document.body.style.backgroundImage = "url('http://www.hdwallpapery.com/static/images/cool-wallpapers-hd-8087-8418-hd-wallpapers_r11UrHZ.jpg')";//change the url address to your image you want around the web
  19. }
  20. }