Change MAL Friends link in Menu

Changes the Friends link in the profile dropdown to the friends page linked to your profile

  1. // ==UserScript==
  2. // @name Change MAL Friends link in Menu
  3. // @namespace https://gf.qytechs.cn/en/users/96096-purplepinapples
  4. // @version 0.2
  5. // @description Changes the Friends link in the profile dropdown to the friends page linked to your profile
  6. // @author PurplePinapples
  7. // @match https://myanimelist.net/*
  8. // @exclude https://myanimelist.net/animelist/*
  9. // @exclude https://myanimelist.net/mangalist/*
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $("#header-menu").find("ul>li:contains('Friends')>a").attr("href", $(".header-profile-button").attr("href") + "/friends");
  15. })();

QingJ © 2025

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