您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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://greasyfork.org/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);
- }
- });