Advertisement
Guest User

boingboingRemoveAntiAdblock

a guest
Mar 6th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           boingboingRemoveAntiAdblock
  3. // @version        1
  4. // @grant          none
  5. // @description    Remove anti-adblock from BoingBoing
  6. // ==/UserScript==
  7. function boingboingRemoveAntiAdblock() {
  8.     var style = document.createElementNS("http://www.w3.org/1999/xhtml", "style");
  9.     style.appendChild(document.createTextNode("body { overflow: auto ! important }\n"));
  10.     style.appendChild(document.createTextNode(".fc-ab-root { display: none ! important }\n"));
  11.     document.getElementsByTagName("head")[0].appendChild(style);
  12. }
  13. boingboingRemoveAntiAdblock();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement