GM.getValue: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
mNo edit summary
mNo edit summary
Line 8: Line 8:
Values are saved in the [http://developer.mozilla.org/en/docs/Code_snippets:Preferences Firefox preferences] back end and can be manually changed by typing <code>about:config</code> in the address bar and searching for the preference name "greasemonkey.scriptval.''script-namespace''/''script-name''".
Values are saved in the [http://developer.mozilla.org/en/docs/Code_snippets:Preferences Firefox preferences] back end and can be manually changed by typing <code>about:config</code> in the address bar and searching for the preference name "greasemonkey.scriptval.''script-namespace''/''script-name''".


[[#Examples|Examples]] | [[#Notes|Notes]] | [[#See_Also|See Also]]
[[#Examples|Examples]] | [[#See_Also|See Also]] | [[#Notes|Notes]]


== Syntax ==
== Syntax ==
Line 54: Line 54:
[[#Description|top]]
[[#Description|top]]


= Notes =
= See Also =
<sup>[1]</sup> This value should be <code>undefined</code> in prefmanager.js
* [[GM_setValue]]


[[#Description|top]]
[[#Description|top]]


= See Also =
= Notes =
* [[GM_setValue]]
<sup>[1]</sup> This value should be <code>undefined</code> in prefmanager.js


[[#Description|top]]
[[#Description|top]]
[[Category:API_Reference|G]]
[[Category:API_Reference|G]]

Revision as of 04:56, 7 December 2007

Template:Underscore


Description

This API method retrieves a value that is set with GM_setValue.

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 | See Also | Notes

Syntax

GM_getValue( name, default )

Returns: String, Integer, Boolean or null[1]
Compatibility: Greasemonkey 0.3b+
Parameters
Properties
name
default
  • All properties are optional except name.

top

Properties


name

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

top | back

default

Value: String, Integer or Boolean
Usage: default = 5;
  • If name is not found, then use this property to return a default value.
Note: Using this property does not call GM_setValue and is by design.

top | back

Examples

alert(GM_getValue("foo"));

top

See Also

top

Notes

[1] This value should be undefined in prefmanager.js

top