MWL - MyWaifuList Auto Comment Expander

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

当前为 2022-10-29 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        MWL - MyWaifuList Auto Comment Expander
// @name:tr     MWL - MyWaifuList Otomatik Yorum Açıcısı
// @namespace   https://myanimelist.net/profile/kyoyatempest
// @match       https://mywaifulist.moe/waifu/*
// @version     1.1
// @author      kyoyacchi
// @description Auto expands the comments for the waifu you're viewing comments.
// @description:tr Yorumlarını görüntülediğiniz waifu'nun yorumlarını otomatik olarak açar.
// @license MIT
// ==/UserScript==


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")


if (!buton) {
  return
}

var otoaç = setInterval(()=> {
  buton[0].click();
},1500)

setTimeout(()=> {
  clearInterval(otoaç)
},60000)//1 min.
//stops after 1 min.