Greasy Fork

MAM Forum Page Re-title

7/12/22 Re-title MAM Forum tab to make it easier to see the topic title

目前为 2022-07-12 提交的版本。查看 最新版本

// ==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
// ==/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];

})();