remove alerts from snyk

remove dismissible alerts from snyk dashboard

// ==UserScript==
// @name         remove alerts from snyk
// @namespace    http://tampermonkey.net/
// @version      0.4
// @license      MIT
// @description  remove dismissible alerts from snyk dashboard
// @author       [email protected]
// @match        https://app.snyk.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=snyk.io
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener("load", function() {
        setInterval(() => {
            const elems = document.querySelectorAll(".alert--dismissible, #org-alerts");
            elems.forEach(elem => {elem.style.display = "none";});
        }, 100);
    });
})();