GM.listValues: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m Added Greasemonkey Manual TOC widget |
m →Description: Link to metadata vals |
||
Line 7: | Line 7: | ||
This [[API_reference|API]] method retrieves an array of preference names that start with the branches root. | This [[API_reference|API]] method retrieves an array of preference names that start with the branches root. | ||
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 "greasemonkey.scriptval. | 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.scriptval.[[Metadata_block#.40namespace|namespace]]/[[Metadata_block#.40name|name]].</code>". | ||
[[#Examples|Examples]] | [[#See_Also|See Also]] | [[#Notes|Notes]] | [[#Examples|Examples]] | [[#See_Also|See Also]] | [[#Notes|Notes]] |
Revision as of 05:51, 6 January 2009
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.namespace/name.
".
Syntax
GM_listValues()
- Value: Function
- Returns: String Array
- Compatibility: Greasemonkey Trunk
Parameters Properties
- There are currently no properties.
Examples
alert(GM_listValues());