On Sun, Jan 23, 2011 at 10:21 AM, nw <[email protected]> wrote: [...] > I want to know if GM_setValue is used in a script I can get the value > with GM_getValue from another script. Or what other alternative I > have, maybe setting the values to about:config in firefox with > javascript. > > I tried grouping the two scripts in the same namespace but is no use.
GM_*etValue are local to the script. They access information coded into a string stored in a *Firefox* preference named after a combination of the script's (normalized) name, the script's namespace and of course the specific preference name used in the script: greasemonkey.scriptvals.<namespace><normalized script name>.<script preference name> -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/greasemonkey-users?hl=en.
