GM.listValues: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
Marti (talk | contribs)
m Whenver 8.1ish is released, this function is available currently in the trunk... created core structure doc... more explicit example could be modified and eventual link in with core API when released
 
Marti (talk | contribs)
m added zero to version compat
Line 16: Line 16:
:Value: Function
:Value: Function
:Returns: String Array
:Returns: String Array
:Compatibility: [[Version_history#8.1|Greasemonkey 8.1+]]
:Compatibility: [[Version_history#0.8.1|Greasemonkey 0.8.1+]]


:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;"
:{| cellpadding="5" style="border-style:solid; background:#FFFFE0;"

Revision as of 19:39, 13 November 2008

Template:Underscore


Description

This API method retrieves an array of preference names that start with the branches 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.scriptval.script-namespace/script-name".

Examples | See Also | Notes

Syntax

GM_listValues()

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

top

Examples

alert(GM_listValues());

top

See Also

top

Notes

top