MyAnimeList Hide Manga Store

Hides the Manga Store Ads on MyAnimeList.

  1. // ==UserScript==
  2. // @name MyAnimeList Hide Manga Store
  3. // @namespace https://gf.qytechs.cn/en/users/96096-purplepinapples
  4. // @version 0.8
  5. // @description Hides the Manga Store Ads on MyAnimeList.
  6. // @author PurplePinapples
  7. // @match https://myanimelist.net/*
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. "use strict";
  13. $(".mal-ad-unit").hide()
  14. $(".left-info-block-manga-store-button").parent().removeClass();
  15. $(".left-info-block-manga-store-button").hide();
  16. $(".manga-store-preview").hide();
  17. $(".manga-store-information").hide();
  18. $(".btn-affiliate.manga-store").hide();
  19. $(".btn-forum-manga-store").hide();
  20. // if we're on the forum
  21. if (window.location.href.indexOf("topicid=") != -1) {
  22. $("div > h2:contains('Manga Store')").parent().hide()
  23. } else {
  24. //on anime/manga page
  25. let c = window.location.href
  26. if (c.indexOf("/anime/") != -1 || c.indexOf("/manga/") != -1 || c.indexOf("anime.php?id=") != -1 || c.indexOf("manga.php?id=") != -1) {
  27. $('h2:contains("Manga Store")').parent().hide();
  28. }
  29. }
  30. })();

QingJ © 2025

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