Remove YouTube Tab Notification Count

Remove your notifications count from the tab title on YouTube.

// ==UserScript==
// @name        Remove YouTube Tab Notification Count
// @match        *://*.youtube.com/*
// @version     1.0
// @author      yodaluca23
// @license      GNU GPLv3
// @description Remove your notifications count from the tab title on YouTube.
// @namespace https://gf.qytechs.cn/users/1315976
// ==/UserScript==

// Save the original descriptor of document.title
const originalTitleDescriptor = Object.getOwnPropertyDescriptor(Document.prototype, 'title');

// Create a custom getter and setter
Object.defineProperty(document, 'title', {
  get: function() {
    return originalTitleDescriptor.get.call(this);
  },
  set: function(newValue) {
    // Remove the (#) with regex.
    const interceptedValue = newValue.replace(/^\(\d+\)\s?/, "");

    // Call the original setter
    originalTitleDescriptor.set.call(this, interceptedValue);
  }
});

QingJ © 2025

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