// ==UserScript== // @name kimcartoon.me No Ads // @description Remove ads // @namespace alaa9jo // @icon http://kimcartoon.me/Content/images/favicon.ico // @match *://kimcartoon.me/* // @version 2017.4.10 // @run-at document-start // @downloadURL none // ==/UserScript== window.addEventListener('DOMContentLoaded', function(e) { /* remove ads */ for (var elem of document.querySelectorAll(` div[class="w-right"], div[class="kcAds"], div[id="videoAd"] `)) { console.log('[-] removing html sections: ', elem); elem.parentElement.removeChild(elem); } });