Last active
December 10, 2020 11:38
-
-
Save TekuSP/36278c8c4c14f0cf5a98ee2f7e4dfb6f to your computer and use it in GitHub Desktop.
This file contains 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 Booru loop | |
// @version 0.3 | |
// @description Image slideshow | |
// @author TekuSP | |
// @match https://derpibooru.org/images/* | |
// @match https://ponybooru.org/images/* | |
// @match https://ponerpics.org/images/* | |
// @match https://twibooru.org/* | |
// @match https://manebooru.art/images/* | |
// @grant none | |
// @namespace https://greasyfork.org/users/715130 | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
function sleep(ms) | |
{ | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function Main() | |
{ | |
var random = document.getElementsByClassName("fa-random")[0]; //Get random button | |
await sleep(300000); //Sleep 5 minutes | |
random.click(); //Click it | |
} | |
Main(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment