Skip to content

Instantly share code, notes, and snippets.

@redtrillix
Forked from thefloodshark/.js
Last active June 23, 2022 21:55
Show Gist options
  • Save redtrillix/2992d12ea2194ee64bd2d50b73bbe32e to your computer and use it in GitHub Desktop.
Save redtrillix/2992d12ea2194ee64bd2d50b73bbe32e to your computer and use it in GitHub Desktop.
Tampermonkey Userscript - Website Auto-Refresh Timer
// ==UserScript==
// @name Auto-Refresh
// @author thefloodshark
// @editor redtrillix
// @include https://myanimelist.net/animelist/RedTrillix?order=5&status=1
// @include https://myanimelist.net/history/RedTrillix
// ==/UserScript==
setTimeout(function(){ location.reload(); }, 60*1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment