Skip to content

Instantly share code, notes, and snippets.

@kimmoli
Created April 9, 2018 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimmoli/8c0ed5285e802ed78800c35aba3e4c42 to your computer and use it in GitHub Desktop.
Save kimmoli/8c0ed5285e802ed78800c35aba3e4c42 to your computer and use it in GitHub Desktop.
Greasemonkey script to reload page
// ==UserScript==
// @name reload monitor
// @namespace rradb
// @include https://build.merproject.org/project/monitor/*
// @version 1
// @grant none
// ==/UserScript==
setTimeout(function(){ location.reload(); }, 10*1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment