Weatherspark Remove ad box

Remove ad box on the right side of weatherspark

  1. // ==UserScript==
  2. // @name Weatherspark Remove ad box
  3. // @description Remove ad box on the right side of weatherspark
  4. // @namespace http://userscripts.org/users/scuzzball
  5. // @include http://weatherspark.com/*
  6. // @version 1.0
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. document.getElementById("flashContentContainer").style.width = "100%";
  11.  
  12. //The ad div has these classes
  13. var div = document.getElementsByClassName("app-ad ad noprint").item(0);
  14.  
  15. div.parentNode.removeChild(div);