Created
August 30, 2016 10:49
-
-
Save blizzy78/aadae632a513ab562efba0b7b9aa8aeb to your computer and use it in GitHub Desktop.
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 Remove Golem.de Inline Ads | |
| // @namespace http://blizzy.de/ | |
| // @version 0.1 | |
| // @description Removes inline ads from golem.de | |
| // @match http://*.golem.de/* | |
| // @copyright 2016, Maik Schreiber | |
| // @require //code.jquery.com/jquery-3.1.0.min.js | |
| // @grant none | |
| // ==/UserScript== | |
| function removeAds() { | |
| $('#iqadtile4').parent().remove(); | |
| } | |
| window.setTimeout(removeAds, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment