remove alerts from snyk

remove dismissible alerts from snyk dashboard

目前為 2023-09-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         remove alerts from snyk
// @namespace    http://tampermonkey.net/
// @version      0.3
// @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 elem = document.querySelector(".alert--dismissible, #org-alerts");
            elem.style.display = "none";
        }, 100);
    });
})();