Advertisement
zetlnd

Untitled

Mar 17th, 2025
5
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Auto Expand Comments on Boosty To
  3. // @match https://boosty.to/*
  4. // ==/UserScript==
  5.  
  6. (function() {
  7. 'use strict';
  8.  
  9. function expandComments() {
  10. // Ищем кнопки по частичным совпадениям классов
  11. let showMoreButtons = document.querySelectorAll('[class*="ShowMore_showMore"], [class*="Comment_readMore"], [class*="Comment_repliesButton"], [class*="Post_readMore"], [class*="CommentView_showMore"]');
  12.  
  13. showMoreButtons.forEach(button => {
  14. if (button.style.display !== 'none') {
  15. button.click();
  16. }
  17. });
  18. }
  19.  
  20. // Запускаем функцию каждые 1000 мс
  21. setInterval(expandComments, 1000);
  22. })();
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement