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); }); })();