Greasy Fork

MAM User Page Re-title

Re-title MAM user tab to make it easier to distinguish from others that start the same

目前为 2020-12-19 提交的版本。查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
document.title=document.title.replace('Details for ', '');
})();