Quora expand all comments

Quora answer's comments automatically expanded on mouse scroll

当前为 2021-02-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         Quora expand all comments
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Quora answer's comments automatically expanded on mouse scroll
// @author       ClaoDD
// @match        https://www.quora.com/*
// @grant        none
// ==/UserScript==

(window.onscroll = function(){[...document.getElementsByClassName("q-text qu-fontSize--small qu-color--gray qu-truncateLines--1")].map( e => e.click() );
                              [...document.getElementsByClassName("fDkEAC")].map( e => e.click() );
                             })();