NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Stop dumb Crystal TOD alerts // @description Crystal TOD should stop sniffling glue and start googling how to program // @version 1 // @grant none // @include https://*.crystal-tod.com/rider/ // @include http://*.crystal-tod.com/rider/ // @run-at document-idle // @namespace ptrharmonic.crystaltod // @license MIT // ==/UserScript== let alertdivs = document.getElementsByClassName("alert-container"); console.log(alertdivs); for (let i=0; i<alertdivs.length; i++) { console.log(i, alertdivs[i]); alertdivs[i].remove(); }