Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Auto Expand Comments on Boosty To
- // @match https://boosty.to/*
- // ==/UserScript==
- (function() {
- 'use strict';
- function expandComments() {
- // Ищем кнопки по частичным совпадениям классов
- let showMoreButtons = document.querySelectorAll('[class*="ShowMore_showMore"], [class*="Comment_readMore"], [class*="Comment_repliesButton"], [class*="Post_readMore"], [class*="CommentView_showMore"]');
- showMoreButtons.forEach(button => {
- if (button.style.display !== 'none') {
- button.click();
- }
- });
- }
- // Запускаем функцию каждые 1000 мс
- setInterval(expandComments, 1000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement