GM.setValue: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
mNo edit summary
Line 34: Line 34:
==== <code>name</code> ====
==== <code>name</code> ====
:Value: String
:Value: String
:Usage: <code>name = "PropertyName";</code>
:Usage: <code>'''name''' = "PropertyName";</code>


:* Property name to retrieve or create.
:* Property name to retrieve or create.
Line 42: Line 42:
==== <code>value</code> ====
==== <code>value</code> ====
:Value: String, Integer or Boolean
:Value: String, Integer or Boolean
:Usage: <code>value = 5;</code>
:Usage: <code>'''value''' = 5;</code>


[[#Description|top]] | [[#Syntax|back]]
[[#Description|top]] | [[#Syntax|back]]

Revision as of 02:47, 7 December 2007

Template:Underscore


Description

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

Strings, booleans, and integers are currently the only allowed data types. This places limitations on the size of an individual value, and the number of values.[1]

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.scriptval.script-namespace/script-name".

Examples | Notes | See Also

Syntax

GM_setValue( name, value )

Returns: Nothing[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

GM_setValue("foo", "bar");

top

Notes

[1] This statement may not be accurate. Please see this mailing list thread for details.

[2] The previous incarnation of this article had an example of alert(GM_setValue("foo", "bar"));. Currently miscapis.js and prefmanager.js does not have any return statements.

top

See Also

top