You can write an AppleScript with something like this:
Code:
repeat
tell application "Safari"
--confirms your browser is the front application
activate
end tell
tell application "System Events"
tell process "Safari"
keystroke "r" using {command down}
delay 60
end tell
end tell
end repeat
Or you could use Opera, which has this built into the contextual menu.