GM.listValues: Difference between revisions

From GreaseSpot Wiki
Jump to navigationJump to search
m (→‎Syntax: This function is not yet available to release distribution and should be referenced as such since it's now included in the GM manual api function list)
m (Added Greasemonkey Manual TOC widget)
Line 1: Line 1:
{{underscore|title=GM_listValues}}
{{underscore|title=GM_listValues}}
__NOTOC__
__NOTOC__
{{Greasemonkey Manual TOC}}


== Description ==
== Description ==

Revision as of 22:19, 30 December 2008

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 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 Trunk
Parameters
Properties
  • There are currently no properties.

top

Examples

alert(GM_listValues());

top

See Also

top

Notes

top