Gaia - Skip Flash Ads

Disable Flash ads or wait time if you have ABP

  1. // ==UserScript==
  2. // @name Gaia - Skip Flash Ads
  3. // @namespace GaiArch_v3
  4. // @description Disable Flash ads or wait time if you have ABP
  5. // @match http://*.gaiaonline.com/launch/*
  6. // @version v1.0.3
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. try {
  11. var adWrapperHTML = document.getElementById('gamerollhtml');
  12. adWrapperHTML.remove();
  13.  
  14. var flashWrapperHTML = document.getElementById('gamerollgame');
  15. flashWrapperHTML.style="display:block;"
  16. }
  17. catch (e) {
  18. console.log('Error: was not able to process Flash space: '+e)
  19. }