Your browser is out of date.

You are currently using Internet Explorer 7/8/9, which is not supported by our site. For the best experience, please use one of the latest browsers.

// Common ad class/id patterns const selectors = [ '[class*="ad-"]', '[class*="_ad"]', '[id*="ad-"]', '[id*="banner"]', '.adsbox', '.advertisement', 'iframe[src*="doubleclick"]', 'div[data-ad]' ];

function removeAds() selectors.forEach(sel => document.querySelectorAll(sel).forEach(el => el.remove()); );