Fix HKG Top-right button in "newweb" interface

Just remove the useless notification box to fix the Top-right button problem

目前为 2023-08-27 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Fix HKG Top-right button in "newweb" interface
  3. // @namespace https://greasyfork.org/users/1006-peach
  4. // @version 0.1
  5. // @description Just remove the useless notification box to fix the Top-right button problem
  6. // @homepageURL https://greasyfork.org/users/1006-peach
  7. // @author Peach
  8. // @match https://forum.hkgolden.com/*
  9. // @run-at document-start
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function()
  15. {
  16. document.head.appendChild(document.createElement('style')).appendChild(document.createTextNode('.MuiSnackbarContent-root{display:none!important;}'));
  17. })();