Greasy Fork is available in English.
clean hackr.io ads
// ==UserScript== // @name cleanHackrIOAds // @namespace http://tampermonkey.net/ // @version 0.1 // @description clean hackr.io ads // @author [email protected] // @match hackr.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=hackr.io // @grant none // @license MIT // @run-at document-body // ==/UserScript== (function() { 'use strict'; var css = [ '[class*="ezoic-ad"],.primis-placeholder', '{display:none!important}', ].join('') var style = document.createElement('style'); style.innerText = css; document.body.previousElementSibling.appendChild(style); })();