// ==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 // @downloadURL none // ==/UserScript== setInterval(()=>{ document.querySelectorAll('button[data-t=moreReplies]').forEach(btn=>btn.click()); },1000)