// ==UserScript== // @name Hide CyberPanel Notifications // @namespace http://tampermonkey.net/ // @version 2025.11.03 // @description Hide #backup-notification and #ai-scanner-notification on CyberPanel (port 8090) // @author You // @include /^https?:\/\/[^\/]+:8090\/.*/ // @run-at document-start // @grant none // ==/UserScript== (function () { "use strict"; const style = document.createElement("style"); style.textContent = ` #backup-notification, #ai-scanner-notification { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; } `; document.documentElement.appendChild(style); })();