Greasy Fork is available in English.

煎蛋打开所有吐槽

一键打开煎蛋所有吐槽框

// ==UserScript==
// @name         煎蛋打开所有吐槽
// @namespace    http://ts8zs.com/
// @version      0.2
// @description  一键打开煎蛋所有吐槽框
// @author       Ts8zs
// @match        http://jandan.net/*
// ==/UserScript==

(function() {
    if(document.querySelector('.tucao-btn')){
        var btn=document.createElement('button');
        btn.onclick=()=>{document.querySelectorAll(".tucao-btn").forEach((e)=>{e.click()})};
        btn.innerText+=`打开所有吐槽`;
        document.querySelector('.post.f').appendChild(btn);
    }
})();