Quora expand all more buttons

Quora more buttons automatically clicked on scroll or at pages opening

  1. // ==UserScript==
  2. // @name Quora expand all more buttons
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Quora more buttons automatically clicked on scroll or at pages opening
  6. // @author ClaoDD
  7. // @match https://www.quora.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (window.onscroll = function(){
  12. const links = Array.from(document.querySelectorAll('.qu-fontFamily--sans'));
  13. links.forEach((link) => {
  14. if (link.textContent === '(more)' || link.textContent.includes('view more')) {
  15. link.click();
  16. }
  17. })
  18. })();