Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Auto click refresh button
- // @namespace Violentmonkey Scripts
- // @match https://8chan.se/*
- // @match https://8chan.cc/*
- // @grant none
- // @version 1.0
- // @author anon
- // ==/UserScript==
- (function() {
- 'use strict';
- // Function to click the refresh button
- function clickRefreshButton() {
- const refreshButton = document.getElementById('refreshButton');
- if (refreshButton) {
- refreshButton.click();
- }
- }
- // Initial click
- clickRefreshButton();
- // Refresh every 5 seconds
- setInterval(clickRefreshButton, 5000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment