Quora expand all the more buttons and comments

Quora more buttons and answer's comments automatically expanded on mouse scroll

  1. // ==UserScript==
  2. // @name Quora expand all the more buttons and comments
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Quora more buttons and answer's comments automatically expanded on mouse scroll
  6. // @author ClaoDD
  7. // @match https://www.quora.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (window.onscroll = function(){[...document.querySelectorAll('.qt_read_more')].map( e => e.click() );
  12. [...document.getElementsByClassName("q-text qu-fontSize--small qu-color--gray qu-truncateLines--1")].map( e => e.click() );
  13. [...document.getElementsByClassName("fDkEAC")].map( e => e.click() );
  14. })();
  15. (function(){[...document.querySelectorAll('.ui_qtext_more_link')].map( e => e.click() );})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址