Remove alert banner/icon

Removes the alert banner and icon from osu pages

  1. // ==UserScript==
  2. // @name Remove alert banner/icon
  3. // @namespace osu
  4. // @version 1.0.2
  5. // @description Removes the alert banner and icon from osu pages
  6. // @author Magnus Cosmos
  7. // @match https://osu.ppy.sh/*
  8. // @match https://lazer.ppy.sh/*
  9. // @require https://gf.qytechs.cn/scripts/473977-osu-web/code/osu-web.js
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. const osu = new OsuWeb(function (body) {
  14. loaded(".osu-page--notification-banners", body).then((notifBanners) => {
  15. notifBanners.innerHTML = "";
  16. });
  17. loaded(".nav2-header", body).then((nav2Header) => {
  18. loaded(".avatar--restricted", nav2Header).then((avatarRestricted) => {
  19. avatarRestricted.classList.remove("avatar--restricted");
  20. }, { childList: true, subtree: true });
  21. });
  22. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址