MAM User Page Re-title

Re-title MAM user tabs to make it easier to distinguish them from others

  1. // ==UserScript==
  2. // @name MAM User Page Re-title
  3. // @namespace yyyzzz999
  4. // @author yyyzzz999
  5. // @namespace http://tampermonkey.net/
  6. // @version 0.2
  7. // @description Re-title MAM user tabs to make it easier to distinguish them from others
  8. // @icon https://cdn.myanonamouse.net/imagebucket/164109/UserIcon64.png
  9. // @match https://www.myanonamouse.net/u/*
  10. // @supportURL https://gf.qytechs.cn/en/scripts/418820-mam-user-page-re-title/feedback
  11. // @homepage https://gf.qytechs.cn/en/users/705546-yyyzzz999
  12. // @license MIT
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18. if (document.title == "My Anonamouse") {
  19. document.title=parseInt(window.location.href.match(/\d+$/)[0], 10); // show other_userid if no name
  20. } else {
  21. document.title=document.title.replace('Details for ', ''); // Chop characters that are usually the same
  22. }
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址