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

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

目前為 2022-09-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name           去除网页标题条数消息通知提醒
// @version        0.1
// @license        MIT
// @author         cooper1x
// @description    去除CSDN、知乎等网页标题消息通知提醒
// @include        *//blog.csdn.net/*
// @include        *//*.zhihu.net/*
// @run-at         document-end
// @namespace      -
// ==/UserScript==
 
window.onload = function () {
  const regOpt = {
    common: "/^\(.*\)\s*/"
  }
  document.title = document.title.replace(regOpt.common,"")
}

QingJ © 2025

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