Skip to content

Instantly share code, notes, and snippets.

@TekuSP
Last active December 10, 2020 11:38
Show Gist options
  • Save TekuSP/36278c8c4c14f0cf5a98ee2f7e4dfb6f to your computer and use it in GitHub Desktop.
Save TekuSP/36278c8c4c14f0cf5a98ee2f7e4dfb6f to your computer and use it in GitHub Desktop.
// ==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