Skip to content

Instantly share code, notes, and snippets.

@blizzy78
Last active August 30, 2016 10:44
Show Gist options
  • Select an option

  • Save blizzy78/a949299a39d04e5b05fdb1ed0780c71e to your computer and use it in GitHub Desktop.

Select an option

Save blizzy78/a949299a39d04e5b05fdb1ed0780c71e to your computer and use it in GitHub Desktop.
// ==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