Remove Tab Title Notification Counters
// ==UserScript== // @name Remove Tab Title Notification Counters // @version 0.5 // @description Removes webpage notification counters that appear at the begining of the tab title. Ex.) "(1) Example Title" becomes "Example Title" // @author nomadic // @match http://*/* // @match https://*/* // ==/UserScript== (function () { function cleanTitleText() { let title = document.title; const regex = /^\(.*\) /; const hasNotificationCounter = regex.test(title); if (hasNotificationCounter) { document.title = title.