您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
去除知乎标题中的私信和消息提醒。
// ==UserScript== // @name Zhihu Title Cleaner // @name:zh-CN 知乎标题清理 // @name:zh-HK 知乎標題清理 // @name:zh-TW 知乎標題清理 // @namespace https://tdl3.com/ // @version 0.1.0 // @description Remove unnecessary notifications from the title. // @description:zh-CN 去除知乎标题中的私信和消息提醒。 // @description:zh-HK 去除知乎標題中的私信和消息提醒。 // @description:zh-TW 去除知乎標題中的私信和消息提醒。 // @author TDL3 // @match https://*.zhihu.com/* // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function() { 'use strict'; let title = document.title; let node = document.querySelector('title'); let observer = new MutationObserver(() => { if (document.title != title) { document.title = title; } }); observer.observe(node, { childList: true }); })();