GM.listValues: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (Text replace - "top " to "")
m (Text replace - "Examples | See Also | Notes" to "")
Line 7: Line 7:
Values are retrieved from the [http://developer.mozilla.org/en/docs/Code_snippets:Preferences Firefox preferences] back end and can be manually viewed by typing [[mozillazine:About:config|about:config]] in the address bar and searching for the preference name "<code>greasemonkey.scriptvals.[[Metadata_block#.40namespace|namespace]]/[[Metadata_block#.40name|name]].</code>".
Values are retrieved from the [http://developer.mozilla.org/en/docs/Code_snippets:Preferences Firefox preferences] back end and can be manually viewed by typing [[mozillazine:About:config|about:config]] in the address bar and searching for the preference name "<code>greasemonkey.scriptvals.[[Metadata_block#.40namespace|namespace]]/[[Metadata_block#.40name|name]].</code>".


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


== Syntax ==
== Syntax ==

Revision as of 21:46, 3 February 2010


Description

This API method retrieves an array of preference names that start with the branch's root.

Values are retrieved from the Firefox preferences back end and can be manually viewed by typing about:config in the address bar and searching for the preference name "greasemonkey.scriptvals.namespace/name.".


Syntax

GM_listValues()

Value: Function
Returns: String Array
Compatibility: Greasemonkey 0.8.1+
Parameters
Properties
  • There are currently no properties.

Examples

Template:Samp

An array of values used by a script: Template:Good samp

Equivalent: Template:Good samp

See Also