Greasy Fork

mydealz comment thread expander - mydealz.de

expands all comment threads.

当前为 2022-07-06 提交的版本,查看 最新版本

// ==UserScript==
// @name        mydealz comment thread expander - mydealz.de
// @namespace   Violentmonkey Scripts
// @match       https://www.mydealz.de/*
// @grant       none
// @version     1.0
// @author      max.savings
// @description expands all comment threads.
// @license     MIT
// ==/UserScript==
setInterval(()=>{
  document.querySelectorAll('button[data-t=moreReplies]').forEach(btn=>btn.click());
},1000)