Cool Math Games Ad Blocker

No More Ads.

// ==UserScript==
// @name         Cool Math Games Ad Blocker
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  No More Ads.
// @author       You
// @match        https://www.coolmathgames.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

setTimeout(function() {
removePrerollAndDisplayGame();
}, 475);
setInterval(()=>{
    try {
        document.getElementsByClassName("ad-wrapper")[0].remove();
    } catch(o){}
}, 100);