You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On slow and unreliable connections it's common for page loads to fail after low-level transport errors, socket errors and general timeouts. Even reliable connections can fail if the host suffers contention-related problems. Since there is no way for the browser to tell that the resource is actually available, common browser functionality is to stop after presenting an error to the user. On unreliable networks such as the internet this behaviour is a mistake. This browser extension will automaticly reload the page if a transient error occurs.
6
+
7
+
# Browser Support
8
+
The extension was designed in Opera and works in both Chrome and Opera desktop editions.
9
+
10
+
# Installation
11
+
For most users, it is sufficient to drag the relevent packed browser extension into the browser extensions management page. The packed extensions live in the "extensions" directory in this repository. For Opera, use error_reloader.nex. For Chrome, use error_reloader.crx.
12
+
13
+
# Privacy Information
14
+
As any page on the internet could in principal experience a transient error, this extension needs permission to operate on all URLs. However, users should rest assured that at no point will the extension ever communicate in any way with any process outside of the requested page's host.
15
+
16
+
# Mechanism of Operation
17
+
Currently, the extension sends a tab reload event after three seconds to the browser in the following instances: If the page's HTTP status code is any of 324, 408, 502, 503, 504, 522, 524, 598, or 599; or if the "net::ERR_ABORTED" socket error has occurred. However, this will not happen if the following resource types are interupted: "stylesheet", "script", "image", or "xmlhttprequest". Having sent a reload instruction to the tab, the extension increments a badge counter so that the user can keep track of how many times the tab has been reloaded so far.
18
+
19
+
# Documentation and Further Information
20
+
https://github.com/stormsaber/error-reloader-extension. Do you know of any other socket errors or general transport problems which this extension fails to operate on? Please submit all bug reports in a timely manner so that this extension can be improved.
0 commit comments