Skip to content

Instantly share code, notes, and snippets.

@blizzy78
Created August 30, 2016 10:49
Show Gist options
  • Select an option

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

Select an option

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