Last active
July 28, 2023 14:09
-
-
Save ImMALWARE/54d82ed5cbbe7d5b88c709b8b8781a33 to your computer and use it in GitHub Desktop.
Автообновление списка тем LZT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Автообновление списка тем | |
// @version 1.0 | |
// @description Автообновление списка тем | |
// @author MALWARE | |
// @match https://zelenka.guru/ | |
// @match https://zelenka.guru/forums/?tab=moja-vkladka | |
// @match https://zelenka.guru/?tab=moja-vkladka | |
// @match https://zelenka.guru/?direction=desc | |
// @match https://zelenka.guru/?order=post_date&direction=desc | |
// @icon https://zelenka.guru/favicon.ico | |
// @run-at document-body | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
setInterval(function(){ | |
$('.DiscussionList').trigger('LoadPageWithoutCache'); | |
XenForo.stackAlert('Страница обновлена', 3000); | |
}, 10000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment