Last active
August 30, 2016 10:44
-
-
Save blizzy78/a949299a39d04e5b05fdb1ed0780c71e 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 Subscription Ads | |
| // @namespace http://blizzy.de/ | |
| // @version 0.1 | |
| // @description Removes subscription 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() { | |
| $('#superbanner').remove(); | |
| $('*[data-google-query-id]').remove(); | |
| } | |
| window.setTimeout(removeAds, 2000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment