Skip to content

Instantly share code, notes, and snippets.

@neoOpus
Forked from thefloodshark/.js
Created October 20, 2021 09:08
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 neoOpus/d16c88079b9eaf14edff31c877d68969 to your computer and use it in GitHub Desktop.
Save neoOpus/d16c88079b9eaf14edff31c877d68969 to your computer and use it in GitHub Desktop.
Tampermonkey Userscript - Website Auto-Refresh Timer
// ==UserScript==
// @name Auto-Refresh
// @include https://www.example.com
// ==/UserScript==
//--- https://stackoverflow.com/questions/25484978/i-want-a-simple-greasemonkey-script-to-reload-the-page-every-minute
setTimeout(function(){ location.reload(); }, 20*1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment