Elite Ad-Block container

Removes the ad block container for elite members

  1. // ==UserScript==
  2. // @name Elite Ad-Block container
  3. // @namespace http://www.nextgenupdate.com
  4. // @version 0.1
  5. // @description Removes the ad block container for elite members
  6. // @author You
  7. // @match http://www.nextgenupdate.com/forums/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var ad = document.getElementById("ad-block");
  12. ad.parentNode.removeChild(ad);
  13.  
  14.