// ==UserScript== // @name SfccDocAdRemover // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @include https://sfcclearning.com/* // @grant GM_addStyle // @run-at document-idle // ==/UserScript== setTimeout(function() { console.info("timeout") document.querySelectorAll(".ads-title").forEach(it=>it.remove()) document.querySelectorAll(".newsletter-box-menu").forEach(it=>it.remove()) }, 3000); (function() { document.querySelectorAll(".ads-title").forEach(it=>it.remove()) document.querySelectorAll(".newsletter-box-menu").forEach(it=>it.remove()) })();