Created
November 7, 2019 08:49
-
-
Save michaelkleinhenz/d1944832b306810e7ace4254fc27de6c to your computer and use it in GitHub Desktop.
KickAdblockGABonn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name KickAdblockGABonn | |
| // @match *://www.general-anzeiger-bonn.de/* | |
| // ==/UserScript== | |
| (function() { | |
| setTimeout(function() { | |
| var adblocker = document.getElementById('wl-container'); | |
| if (adblocker) { | |
| adblocker.parentNode.removeChild(adblocker); | |
| } | |
| }, 3000); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment