Advertisement
thibthibaut

Untitled

Apr 20th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        RemovePopIn
  3. // @namespace   Thibaut V.
  4. // @description Remove the ugly pop-in in openclassroopm website
  5. // @include     http://openclassrooms.com/*
  6. // ==/UserScript==
  7.  
  8. table = document.getElementsByClassName("fancybox-wrap");
  9. table[0].parentNode.removeChild(table[0]);
  10. table = document.getElementsByClassName("fancybox-overlay");
  11. table[0].parentNode.removeChild(table[0]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement