How to prevent websites from timing out?

I have a website that I use all day long, however, it times out after 15 minutes from inactivity. It's very annoying to have to "do something" on the site every few minutes, and many times I don't, requiring constantly re-logging in. And it's a site-set password that I can't change that's long and difficult to enter each time.


So what I'm looking for is a way to have my mac "do something" every 10 minutes or so to prevent the site from timing out. Maybe a macro of some sort or a browser extension (I'm using Chrome)? If an extension, it must be reputable and highly secure.


Thanks for any ideas!

MacBook Air 11", macOS 10.14

Posted on Mar 25, 2020 8:53 AM

Reply
Question marked as Top-ranking reply

Posted on Mar 27, 2020 7:30 AM

The reloading question helped my figure out the solution.


Since reloading the browser tab did reset the timer, I found an extension that does this. I'm forced to use Chrome for this particular website, so downloaded a Chrome extension called "Tab Reloader." It's a very simple extension where you can set a timer from 10 seconds to 10 days and it works great.


I'd imaging there's a similar version available for Safari, but if you need this functionality for some website, then just use Chrome and this extension.

10 replies
Question marked as Top-ranking reply

Mar 27, 2020 7:30 AM in response to atthecshore

The reloading question helped my figure out the solution.


Since reloading the browser tab did reset the timer, I found an extension that does this. I'm forced to use Chrome for this particular website, so downloaded a Chrome extension called "Tab Reloader." It's a very simple extension where you can set a timer from 10 seconds to 10 days and it works great.


I'd imaging there's a similar version available for Safari, but if you need this functionality for some website, then just use Chrome and this extension.

Mar 27, 2020 9:17 AM in response to atthecshore

Appreciate the feedback, and good job on solving it. As of this post, there are no explicit browser refresh tools among Safari extensions shown in the Mac App Store. The following will reload the current window or tab in Safari via AppleScript:


use scripting additions

if application "Safari" is running then
	tell application "Safari"
		tell front document
			do JavaScript "window.location.reload();"
		end tell
	end tell
end if



Mar 25, 2020 11:38 AM in response to atthecshore

Always something to complicate things…


They may have it configured so that only a single sign-in is permitted per account, and those sign-ins are restricted to that 15 minute window. Does the financial site ask random, security questions, based on answers you have provided beforehand? If it has this form of forced interactivity to thwart non-human access, then there would be two impassable restrictions:

  1. Single sign-on per account holder, with the timer commencing after sign-in
  2. Random challenge questions to prevent what you want to do with poking the site to extend the sign-in period

Mar 27, 2020 7:57 AM in response to atthecshore

atthecshore wrote:

The reloading question helped my figure out the solution.

Since reloading the browser tab did reset the timer, I found an extension that does this. I'm forced to use Chrome for this particular website, so downloaded a Chrome extension called "Tab Reloader." It's a very simple extension where you can set a timer from 10 seconds to 10 days and it works great.

I'd imaging there's a similar version available for Safari, but if you need this functionality for some website, then just use Chrome and this extension.


excellent resolve atthecshore

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

How to prevent websites from timing out?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.