12

What is the standard (out of the box) timeout for Chrome? How do I change the timeout settings and have a different timeout for developers and a standard users of my service?

Jolene N
  • 121
  • 1
  • 1
  • 6
  • I wonder where is the answer to first part of the question in that so called duplicate question... `What is the standard (out of the box) timeout for Chrome? ` – llamerr Nov 26 '17 at 14:58

1 Answers1

8

What is the standard (out of the box) timeout for Chrome?

You can see the default value in Chrome in this link

int64_t g_used_idle_socket_timeout_s = 300 // 5 minutes

Source Where can I find the default timeout settings for all browsers?


How do I change the timeout settings and have a different timeout for developers and a standard users of my service?

You can't.

In Chrome, as far as I know, there isn't an easy way (as Firefox do) to change the timeout value.

Source Where can I find the default timeout settings for all browsers?

DavidPostill
  • 153,128
  • 77
  • 353
  • 394