Using the power of PWB we can inject JavaScript into the page to refresh it every 25 minutes.
Add/Change the following in your PWB INI file:
Code: Select all
[Files]
JavaScriptFilterFile=sirsifilter.txt
[Security]
CheckJavaScriptAccess=True
The "sirsifilter.txt" will look for the "https://stan.ent.sirsi.net/client/en_US/cer" URL, and when found will inject the "sirsiscript.txt" file.
Code: Select all
-all
+^https://stan.ent.sirsi.net/client/en_US/cer sirsiscript.txt
Code: Select all
setTimeout(function() {
location.reload();
}, 1500000);