Auto refresh page || Userscript || TamperMonkey


SUBMITTED BY: farrent

DATE: Jan. 23, 2016, 9:56 a.m.

FORMAT: Text only

SIZE: 418 Bytes

HITS: 1473

  1. // ==UserScript==
  2. // @name Browser Auto Refresh
  3. // @version 0.1
  4. // @description lol
  5. // @author Anonymous
  6. // @match https://site.com/*
  7. // @match http://site.com/*
  8. // @grant GM_setValue
  9. // @grant GM_getValue
  10. // @grant GM_addStyle
  11. // ==/UserScript==
  12. setInterval(function() {
  13. window.location.reload();
  14. }, 300);

comments powered by Disqus