Auto Reload

By Julien Couvreur Last update Jun 19, 2005 — Installed 7,427 times. Daily Installs: 2, 2, 18, 7, 1, 1, 6, 5, 8, 3, 7, 3, 2, 14, 5, 10, 4, 5, 1, 1, 6, 2, 7, 2, 2, 5, 6, 2, 7, 5, 5, 5
// Auto Reload
// version 0.1
// 2005-04-06
// Copyright (c) 2005, Julien Couvreur
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// You should configure the Included and Excluded pages in the GreaseMonkey 
//      configuration pane.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Auto Reload", and click Uninstall.
//
// --------------------------------------------------------------------
//
// WHAT IT DOES:
//  Reload the pages configured in the Included page list every minute.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name            Auto Reload
// @namespace       http://blog.monstuff.com/archives/cat_greasemonkey.html
// @description     "Included pages" will get reloaded every minute.
// @include         http://put.your.own.pages/*/here
// ==/UserScript==

(function()
{
    setTimeout("document.location.reload();", 60000);
})();