GM.listValues: Difference between revisions
From GreaseSpot Wiki
Jump to navigationJump to search
m →Examples: Moving output to error console instead of alert()... could be huge depending on app |
→Examples: adding example from http://userscripts.org/topics/34069 by charmy |
||
Line 31: | Line 31: | ||
{{Core samp |1=<pre style="border: none; margin: inherit;"> | {{Core samp |1=<pre style="border: none; margin: inherit;"> | ||
GM_log(GM_listValues()); | GM_log(GM_listValues()); | ||
</pre>}} | |||
An array of values used by a script: | |||
{{Core samp |1=<pre style="border: none; margin: inherit;"> | |||
var vals = new Array(); | |||
for each(var val in GM_listValues()) | |||
vals.push(GM_getValue(val)); | |||
</pre>}} | |||
Equivalent: | |||
{{Core samp |1=<pre style="border: none; margin: inherit;"> | |||
var vals = GM_listValues().map(GM_getValue); | |||
</pre>}} | </pre>}} | ||
Revision as of 06:47, 30 August 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 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
An array of values used by a script: Template:Core samp
Equivalent: Template:Core samp