Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name Auto-refresh
  3. // @namespace GUiHKX
  4. // @include trtools.com.br
  5. // @description Atualiza.
  6. // ==/UserScript==
  7.  
  8. min = 20; // tempo em minutos
  9.  
  10. setInterval(function() {
  11.     window.location.reload();
  12. }, (min * 60))
Add Comment
Please, Sign In to add comment