GM.getValue: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
(→‎Returns: typo)
Line 25: Line 25:
; When this <code>name</code> has not been set, and <code>default</code> is provided
; When this <code>name</code> has not been set, and <code>default</code> is provided
: The value passed as <code>default</code>
: The value passed as <code>default</code>
; When this <code>name</code> has not been set, and <code>default</code> is not
; When this <code>name</code> has not been set, and <code>default</code> is not provided
: <code>null</code>
: <code>null</code>



Revision as of 16:15, 9 July 2010


Description

This method retrieves a value that was set with GM_setValue. See GM_setValue for details on the storage of these values.

Compatibility: Greasemonkey 0.3b+

Syntax

function GM_getValue( name, default )

Arguments

name
String The property name to get. See GM_setValue for details.
default
Optional. Any value to be returned, when no value has previously been set.

Returns

When this name has been set
String, Integer or Boolean as previously set
When this name has not been set, and default is provided
The value passed as default
When this name has not been set, and default is not provided
null

Examples

GM_log(GM_getValue("foo"));

See Also