// ==UserScript== // @name Working Bonk Ad Blocker // @namespace http://tampermonkey.net/ // @version 0.3 // @description Remove ads on bonk.io // @author MYTH_doglover // @match https://bonk.io/* // @grant none // @downloadURL none // ==/UserScript== (function() { var ad3 = document.getElementById("bonk_d_1"); ad3.remove(); var ad4 = document.getElementById("bonk_d_2"); ad4.remove(); })();