vote up 0 vote down star

Is there any limit on how much data can be stored using GM_setValue?

flag

52% accept rate

2 Answers

vote up 2 vote down check

GM stores it in properties. Open about:config and look for them.

According to http://diveintogreasemonkey.org/api/gm_getvalue.html, you can find them in the greasemonkey.scriptvals branch.

This sqlite info on its limits shows some default limits for strings and blobs, but they may be changed by Firefox.

link|flag
vote up 0 vote down

According to the site you provided, "The value argument can be a string, boolean, or integer."

Obviously, a string can hold far more information than an integer or boolean.

Since GreaseMonkey scripts are JavaScript, the max length for a GM_setValue is the max length of a JavaScript string. Actually, the JavaScript engine (browser specific) determines the max length of a string.

I do not know any specifics, but you could write a script to determine max length.

Keep doubling length until you get an error. Then, try a value halfway between maxGoodLen and minBadLen until maxGoodLen = maxBadLen - 1.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.