NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name MŰGÉP Webshop beléptetés alert // @namespace http://tampermonkey.net/ // @version 0.2 // @description Feltűnőbbé teszi az értesítést a beléptetéskor. // @author IceCube018 // @include http://jegy.mugep.hu/beleptetes* // @include https://jegy.mugep.hu/beleptetes* // @grant none // @run-at document-ready // @license GPL-3.0-or-later // @copyright 2020, IceCube018 (https://openuserjs.org/users/IceCube018) // @updateURL https://openuserjs.org/meta/IceCube018/MŰGÉP_Webshop_beléptetés_alert.meta.js // ==/UserScript== (function checkAlert() { try{ var noticeAlert = document.getElementsByClassName("woocommerce-notice") var successAlert = document.getElementsByClassName("woocommerce-success") if (noticeAlert.length == 1){ noticeAlert[0].style.backgroundColor = "#f15b41" noticeAlert[0].style.color = "white" noticeAlert[0].style.fontWeight = "bold" noticeAlert[0].style.padding = "16px 26px" } else if(successAlert.length == 1){ successAlert[0].style.backgroundColor = "#3ad65c" successAlert[0].style.color = "white" successAlert[0].style.fontWeight = "bold" successAlert[0].style.padding = "16px 26px" } } catch(err){} setTimeout( function() { checkAlert(); }, 1000*0.5); })();