// ==UserScript== // @name MAM User Page Re-title // @namespace yyyzzz999 // @author yyyzzz999 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Re-title MAM user tab to make it easier to distinguish from others that start the same // @author You // @match https://www.myanonamouse.net/u/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.title=document.title.replace('Details for ', ''); })();