您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the notification count from the title of all webpages
// ==UserScript== // @name Title notification remover // @namespace https://zachsaucier.com/ // @version 0.1 // @description Removes the notification count from the title of all webpages // @author Zach Saucier // @match *://*/* // @grant none // ==/UserScript== (function() { 'use strict'; // The actual functionality to remove the notification in the page title var notificationCountRegex = new RegExp('^\\(\\d+\\)+'); function removeTitleNotification() { if(notificationCountRegex.test(document.head.querySelector("title").innerText)) document.head.querySelector("title").innerText = document.head.querySelector("title").innerText.split(')')[1]; } removeTitleNotification(); var observeDOM = (function() { var MutationObserver = window.MutationObserver || window.WebKitMutationObserver, eventListenerSupported = window.addEventListener; return function(obj, callback) { if(MutationObserver) { // Define a new observer var obs = new MutationObserver(function(mutations, observer){ if(mutations[0].addedNodes.length || mutations[0].removedNodes.length ) callback(); }); // Have the observer observe foo for changes in children obs.observe(obj, {childList: true, subtree: true}); } else if(eventListenerSupported ) { obj.addEventListener('DOMNodeInserted', callback, false); obj.addEventListener('DOMNodeRemoved', callback, false); } }; })(); // Observe a specific DOM element: observeDOM(document.head.querySelector("title"), function() { removeTitleNotification(); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址