Skip to content

Instantly share code, notes, and snippets.

@wmerfalen
Created September 7, 2021 20:12
Show Gist options
  • Save wmerfalen/9bce85c19afc1e8429725126f2334116 to your computer and use it in GitHub Desktop.
Save wmerfalen/9bce85c19afc1e8429725126f2334116 to your computer and use it in GitHub Desktop.
hit "random" link on ircz.de every 15 seconds
// ==UserScript==
// @name hit random every 15secs
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://ircz.de/p/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.setInterval(function(){
location.href = 'https://ircz.de/random';
},15000);
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment