Load More on Steam

This script automatically clicks Load More button on Steam Chat Logs.

  1. // ==UserScript==
  2. // @name Load More on Steam
  3. // @namespace http://steamcommunity.com
  4. // @version 1.0
  5. // @description This script automatically clicks Load More button on Steam Chat Logs.
  6. // @author TEKNO
  7. // @match https://help.steampowered.com/en/accountdata/GetFriendMessagesLog
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. function clicker() {
  13. var btn = document.getElementsByClassName("AccountDataLoadMore");
  14. if(btn.length>0) {
  15. loadbtn = btn[0];
  16. loadbtn.click();
  17. }
  18. setTimeout(clicker,500);
  19. }
  20.  
  21. clicker();
  22. })();

QingJ © 2025

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