MWL - MyWaifuList Auto Comment Expander

Auto expands the comments for the waifu you're viewing comments.

  1. // ==UserScript==
  2. // @name MWL - MyWaifuList Auto Comment Expander
  3. // @name:tr MWL - MyWaifuList Otomatik Yorum Açıcısı
  4. // @namespace https://myanimelist.net/profile/kyoyatempest
  5. // @match https://mywaifulist.moe/waifu/*
  6. // @version 1.5
  7. // @author kyoyacchi
  8. // @description Auto expands the comments for the waifu you're viewing comments.
  9. // @description:tr Yorumlarını görüntülediğiniz waifu'nun yorumlarını otomatik olarak açar.
  10. // @license gpl-3.0
  11. // @run-at document-end
  12. // ==/UserScript==
  13.  
  14.  
  15. let buton = document.getElementsByClassName("inline-flex items-center px-3 py-2 border border-gray-300 shadow-sm text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 dark:bg-transparent dark:border-zinc-400 dark:text-zinc-400 dark:hover:text-zinc-200 dark:hover:border-zinc-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 transition duration-150")
  16.  
  17.  
  18. if (!buton) {
  19. return
  20. }
  21.  
  22. var otoaç = setInterval(()=> {
  23. buton[0].click();
  24. },1500)
  25.  
  26. setTimeout(()=> {
  27. clearInterval(otoaç)
  28. },60000)//1 min.
  29. //stops after 1 min.

QingJ © 2025

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