Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
121
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. // @include        https://boingboing.net/*
  7. // ==/UserScript==
  8. function boingboingRemoveAntiAdblock() {
  9.     var style = document.createElementNS("http://www.w3.org/1999/xhtml", "style");
  10.     style.appendChild(document.createTextNode("body { overflow: auto ! important }\n"));
  11.     style.appendChild(document.createTextNode(".fc-ab-root { display: none ! important }\n"));
  12.     document.getElementsByTagName("head")[0].appendChild(style);
  13. }
  14. boingboingRemoveAntiAdblock();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement