Facebook Error Page Reloader

By Vaughan Chandler Last update Feb 3, 2008 — Installed 3,820 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 4 posts, 3 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
Kåre Hampf Scriptwright

The script is still useful as some pages (mostly games) go dead from time to time, happens about every other day or so. Also, thank you for writing the script in the first place, sort of got me playing around with greasemonkey and javascript a lot more :-)

 
Vaughan Chan... Script's Author

Hi Kåre Hampf,

Facebook's application platform seems to have stabilized so much that I didn't even realize these messages were still being shown and I had no intentions of updating this script. Are you (or is anyone) still getting these error pages? If so I will update it as you recommended.

Vaughan

 
Kåre Hampf Scriptwright

To work with the new facebook, add http://apps.new.facebook.com/* to included pages and change the first if-clause from:

if (document.getElementById('error_message').innerHTML.toLowerCase().indexOf('error while loading page from') != -1)

(which searches for text on the page by ID which has changed) to the following:

if (document.title.toLowerCase().indexOf('error loading page') != -1)

which just checks the tile for the error message.