Post doesn't exist
Fix for it asking to update itself
|
|
If you have a recent version of greasemonkey, then this script asks to update itself on every page. Annoying. Here's the fix: Around line 595, you'll find this:
Change that to this:
}
Problem solved. |
|
|
thx |
|
|
Worked for me so far, thanks. Here is what the new function should look like formatted correctly.
function setStoredValue (strName, varValue) {
try {
if (GM_setValue && GM_setValue !== win.GM_setValue) {
window.setTimeout(function(){
GM_setValue(strName, varValue)
}, 0);
}
} catch (ex) {}
return varValue;
};
|
![]() ![]() |
Can't the script *itself* be updated, rather than needing patched by the user? I updated it 5 minutes ago and I've already had to turn it off in GM. Status: broken. |
![]() ![]() |
I don't quite understand your request, xanderificus. Were you successfully using this script before today? I was under the impression that people had moved on to other things, but if I'm wrong then I'll restore this one and put my new auto-update code elsewhere until I have a proper replacement. But with in-script updates being so easy to implement, I personally have come around to preferring them over an integrated manager that still requires special code anyway. |

