Is there any limit on how much data can be stored using GM_setValue?
|
|
|
|
|
|
|
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 This sqlite info on its limits shows some default limits for strings and blobs, but they may be changed by Firefox. |
|||
|
|
|
|
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. |
||
|
|
