NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ügyintézés szabadon // @namespace http://tampermonkey.net/ // @version 0.1 // @description Hides the banner on magyarorszag.hu // @author Domonkos Lezsák // @match https://magyarorszag.hu/szuf_fooldal // @icon https://www.google.com/s2/favicons?sz=64&domain=magyarorszag.hu // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... const button = document.getElementById('button-1'); if (button) button.click(); })();