GreasyFork: My own 800 scripts

1/2/2025, 12:05:03 AM

  1. // ==UserScript==
  2. // @name GreasyFork: My own 800 scripts
  3. // @namespace Violentmonkey Scripts
  4. // @match https://greatest.deepsurf.us/*
  5. // @grant none
  6. // @version 1.0
  7. // @author -
  8. // @description 1/2/2025, 12:05:03 AM
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. const elm = document.querySelector('.user-profile-link a[href]');
  13. const href = elm?.getAttribute('href') || '';
  14. if (href.length > 5 && /^(https:\/\/greasyfork\.org)?\/[\w-]+\/users\/\d+-[^?\/\s]+$/.test(href)) {
  15. elm.setAttribute('href', href + '?per_page=800');
  16. }