Martii / greasemonkey forked from greasemonkey/greasemonkey

Greasemonkey is a user script manager for Firefox.

Home | Edit | New

GM_setValue

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.

Examples | See Also | Notes

Syntax

GM_setValue( name, value )

Value: Function
Returns: undefined
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

GM_setValue("foo", "bar");

top

See Also

top

Notes

top

Last edited by Martii, Fri Oct 16 17:28:38 -0700 2009
Home | Edit | New
Versions: