Skip to content

Instantly share code, notes, and snippets.

@erichexter
Created August 4, 2016 18:10
Show Gist options
  • Save erichexter/07b61cd573c6dc0d695df6baef00e4e8 to your computer and use it in GitHub Desktop.
Save erichexter/07b61cd573c6dc0d695df6baef00e4e8 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Refresh Queue page
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*.quarterspot.net/Queues*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(function(){
location.reload(true);
}, 5000)
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment