去除网页标题条数消息通知提醒

去除CSDN、知乎等网页标题消息通知提醒

  1. // ==UserScript==
  2. // @name 去除网页标题条数消息通知提醒
  3. // @version 0.2
  4. // @author cooper1x
  5. // @description 去除CSDN、知乎等网页标题消息通知提醒
  6. // @match *://blog.csdn.net/*
  7. // @match *://*.zhihu.com/*
  8. // @run-at document-end
  9. // @namespace https://gf.qytechs.cn/zh-CN/scripts/452154
  10. // ==/UserScript==
  11. window.onload = () => {
  12. let timer = setInterval(removeMessageNotification, 300);
  13. function removeMessageNotification() {
  14. const regRule = {
  15. common: /^\(.*\)\s*/,
  16. }
  17. let currentTitle = document.title
  18. if (regRule.common.test(currentTitle)) {
  19. document.title = currentTitle.replace(regRule.common,"")
  20. }else{
  21. clearInterval(timer)
  22. }
  23. }
  24. }

QingJ © 2025

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