Greasy Fork is available in English.

Facebook - All "See more" buttons expanded

Facebook - All the "See more" buttons expanded on scroll - support english, italian 'Altro...', español 'Ver más', français 'Afficher la suite', deutsch 'Mehr ansehen'

  1. // ==UserScript==
  2. // @name Facebook - All "See more" buttons expanded
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Facebook - All the "See more" buttons expanded on scroll - support english, italian 'Altro...', español 'Ver más', français 'Afficher la suite', deutsch 'Mehr ansehen'
  6. // @author ClaoDD
  7. // @match https://www.facebook.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (window.onscroll = function(){
  12. const links = Array.from(document.querySelectorAll('.oajrlxb2'));
  13. links.forEach((link) => {
  14. if (link.textContent === 'Altro...' || link.textContent === 'See more' || link.textContent === 'Ver más' || link.textContent === 'Afficher la suite' || link.textContent === 'Mehr ansehen') {
  15. link.click();
  16. }
  17. })
  18. })();