GM.setValue: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Text replace - "{{Core samp" to "{{Samp")
m (Text replace - "top " to "")
Line 51: Line 51:
GM_setValue("foo", "bar");
GM_setValue("foo", "bar");
</pre>}}
</pre>}}
[[#top|top]]


== See Also ==
== See Also ==
Line 58: Line 56:
* [[GM_deleteValue]]
* [[GM_deleteValue]]
* [[GM_listValues]]
* [[GM_listValues]]
[[#top|top]]


== Notes ==
== Notes ==
<sup>[[GM_setValue#top|[1]]]</sup> Please see [http://groups.google.com/group/greasemonkey-users/t/ca5a0dfac5c5998b this mailing list thread] for details.
<sup>[[GM_setValue#top|[1]]]</sup> Please see [http://groups.google.com/group/greasemonkey-users/t/ca5a0dfac5c5998b this mailing list thread] for details.
[[#top|top]]


[[Category:API_Reference|S]]
[[Category:API_Reference|S]]

Revision as of 21:28, 3 February 2010


Description

This API method allows user script authors to persist simple values locally.

Strings, booleans, and integers are currently the only allowed data types. Values are saved in the Firefox preferences back end and can be manually changed by typing about:config in the address bar and searching for the preference name "greasemonkey.scriptvals.namespace/name.foo".

The Firefox preference store is not designed for storing large amounts of data. There are no hard limits, but very large amounts of data may cause Firefox to consume more memory and/or run more slowly.[1]

Examples | See Also | Notes

Syntax

GM_setValue( name, value )

Value: Function
Returns: undefined[2]
Compatibility: Greasemonkey 0.3b+
Parameters
Properties
name
value
  • All properties are optional except name and value.

top

Properties


name

Value: String
Usage: name = "PropertyName";
  • Property name to retrieve or create.

top | back

value

Value: String, Integer or Boolean
Usage: value = 5;

top | back

Examples

Template:Samp

See Also

Notes

[1] Please see this mailing list thread for details.