Advertisement
rdsedmundo

Acesso Restrito - Folha UOL.js

Feb 4th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.     ** Burlar "Acesso restrito" - folha.uol.com.br **
  3.     @author: Kyl3
  4.     04/02/2014
  5. */
  6.  
  7. document.body.setAttribute("style", "width:auto !important; margin:0 !important"); // habilita a barra de scroll
  8. elms = document.getElementsByTagName("div");
  9.  
  10. for(var D in elms) {
  11.     if(elms[D].style)
  12.         if(elms[D].style.getPropertyValue("z-index") >= 999) // remove o Overlay da pΓ‘gina
  13.          elms[D].remove();
  14. }
  15.  
  16. window.onscroll = window.onmousewheel = document.onmousewheel = document.onkeydown = null; // habilita scroll
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement