cyberwizzardgmail.com / IFLS Taboola Cleaner

// ==UserScript==
// @name        IFLS Taboola Cleaner
// @namespace   http://www.cyberwizzard.nl
// @description Script to remove the click-bait links from I-Fucking-Love-Science
// @include     *.iflscience.com/*
// @version     1
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle
// ==/UserScript==

waitForKeyElements("#taboola-below-article", cleaner);

function cleaner() {
  var elem = $("#taboola-below-article");
  if(elem) elem.hide();
  
  elem = $("#taboola-right-rail-mix");
  if(elem) elem.hide();
}