Remove Adblock Warning - emoji.gg
// ==UserScript==
// @name Adblock Warning - emoji.gg
// @namespace https://emoji.gg/
// @version 1.0
// @description Remove Adblock Warning - emoji.gg
// @author Youky
// @match https://emoji.gg/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const adblockWarning = document.getElementById("yousuck");
if (adblockWarning) {
adblockWarning.remove();
}
})();