您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Re-title MAM user tabs to make it easier to distinguish them from others
// ==UserScript== // @name MAM User Page Re-title // @namespace yyyzzz999 // @author yyyzzz999 // @namespace http://tampermonkey.net/ // @version 0.2 // @description Re-title MAM user tabs to make it easier to distinguish them from others // @icon https://cdn.myanonamouse.net/imagebucket/164109/UserIcon64.png // @match https://www.myanonamouse.net/u/* // @supportURL https://gf.qytechs.cn/en/scripts/418820-mam-user-page-re-title/feedback // @homepage https://gf.qytechs.cn/en/users/705546-yyyzzz999 // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; if (document.title == "My Anonamouse") { document.title=parseInt(window.location.href.match(/\d+$/)[0], 10); // show other_userid if no name } else { document.title=document.title.replace('Details for ', ''); // Chop characters that are usually the same } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址