Zhihu Title Cleaner

Remove unnecessary notifications from the title.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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 });
})();