GM.listValues: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (marking core sample code vs other sample code.)
m (→‎Examples: Moving output to error console instead of alert()... could be huge depending on app)
Line 30: Line 30:
== Examples ==
== Examples ==
{{Core samp |1=<pre style="border: none; margin: inherit;">
{{Core samp |1=<pre style="border: none; margin: inherit;">
alert(GM_listValues());
GM_log(GM_listValues());
</pre>}}
</pre>}}



Revision as of 05:32, 7 May 2009

Template:Underscore


Greasemonkey Manual
Using Greasemonkey
Installing Scripts
Monkey Menu
Getting Help
User Script Authoring
Editing
Environment
API

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.".

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

Template:Core samp

top

See Also

top

Notes

top