Generated file

Copy as Markdown

Other Tools

/* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. */
{
const alertsToHide = ["chrome"];
const { alert } = window;
window.alert = function (msg) {
const lc = msg?.toLowerCase?.();
if (lc) {
for (const alertToHide of alertsToHide) {
if (lc.includes(alertToHide)) {
return;
}
}
}
alert(msg);
};
}