Skip to content

Instantly share code, notes, and snippets.

@rynomad
Created April 10, 2023 04:09
Show Gist options
  • Save rynomad/1ba2f4d6281f8bad89cbbbabb1cd90cb to your computer and use it in GitHub Desktop.
Save rynomad/1ba2f4d6281f8bad89cbbbabb1cd90cb to your computer and use it in GitHub Desktop.
Automatically refreshes the page every 10 seconds.
// ==UserScript==
// @name Auto Refresh
// @namespace Violentmonkey Scripts
// @version 1.0
// @description Automatically refreshes the page every 10 seconds.
// @author Your Name
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function() {
location.reload();
}, 10000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment