// ==UserScript== // @name MAM Forum Page Re-title // @namespace yyyzzz999 // @author yyyzzz999 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 7/12/22 Re-title MAM Forum tab to make it easier to see the topic title // @author You // @match https://www.myanonamouse.net/f/* // @icon https://cdn.myanonamouse.net/imagebucket/164109/Mforum.png // @homepage https://greasyfork.org/en/users/705546-yyyzzz999 // @grant none // @license MIT // @run-at document-end // @downloadURL none // ==/UserScript== /*jshint esversion: 6 */ // Icon adapted from https://www.freeiconspng.com/downloadimg/24923 (function() { 'use strict'; let arr = []; if (document.title.match('>')) { arr = document.title.split(">"); } else { arr = document.title.split(":"); } document.title=arr[arr.length-1]; })();