<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to GM_listValues</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>Recent changes to GM_listValues</description><atom:link href="https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 10 Aug 2019 10:29:59 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/feed" rel="self" type="application/rss+xml"/><item><title>GM_listValues modified by mmartz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v22
+++ v23
@@ -19,7 +19,7 @@

 Value: Function
 Returns: String Array
-Compatibility: [Greasemonkey 0.8.1+](Version_history#08200901231)
+Compatibility: Greasemonkey [0.8.1](Version_history#08200901231) - [3.12.0](Version_history#3120)
 Access: [@grant](Metadata_Block#grant_)

 Parameters
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mmartz</dc:creator><pubDate>Sat, 10 Aug 2019 10:29:59 -0000</pubDate><guid>https://sourceforge.nete907da80c606916b2b11a42901aa88bddc82b620</guid></item><item><title>GM_listValues modified by mmartz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v21
+++ v22
@@ -70,4 +70,4 @@

 ## Notes

-[⬆][toTop] [⬇][toBottom]
+[⬆][toTop]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mmartz</dc:creator><pubDate>Fri, 09 Aug 2019 19:39:56 -0000</pubDate><guid>https://sourceforge.net7a673cc69c481132af1dd1e08b9f365b2fdb8244</guid></item><item><title>GM_listValues modified by mmartz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v20
+++ v21
@@ -20,7 +20,7 @@
 Value: Function
 Returns: String Array
 Compatibility: [Greasemonkey 0.8.1+](Version_history#08200901231)
-Access: [@grant](Metadata_Block#grant_)
+Access: [@grant](Metadata_Block#grant_)

 Parameters

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mmartz</dc:creator><pubDate>Mon, 05 Aug 2019 14:06:24 -0000</pubDate><guid>https://sourceforge.net9630748b6ac771e9124f8e65dedb72591745ff10</guid></item><item><title>GM_listValues modified by mmartz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v19
+++ v20
@@ -1,12 +1,15 @@
 [toTop]: #content_base "Top"
-[toBottom]: #site-footer "Bottom"
+[toBottom]: #notes "Bottom"
+
+[fxPreferences]: https://developer.mozilla.org/docs/Code_snippets:Preferences
+
 ## Description

 This [API](Greasemonkey_Manual:API) method retrieves an array of names to values from persistent storage that start with the branch's root.

-Currently values are retrieved from a SQLite database located in the [Scripts_directory]. Each script currently has one database named off of the subfolder created after installing a script with a file extension of `.db`.
+Currently values are retrieved from a SQLite database located in the [Scripts directory](Scripts_directory). Each script currently has one database named off of the subfolder created after installing a script with a file extension of `.db`.

-Prior to version 1.13 Numbers were limited to integers and no decimal values. Values were deleted from the [Firefox preferences](http://developer.mozilla.org/docs/Code_snippets:Preferences) back end and could be manually changed by typing about:config?filter=extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#namespace)/[name](Metadata_Block#name).foo
+Prior to version 1.13 Numbers were limited to integers and no decimal values. Values were deleted from the [Firefox preferences][fxPreferences] back end and could be manually changed by typing about:config?filter=extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#namespace)/[name](Metadata_Block#name).foo

 [⬆][toTop] [⬇][toBottom] | [Examples](#examples) | [See Also](#see-also) | [Notes](#notes)

@@ -16,7 +19,7 @@

 Value: Function
 Returns: String Array
-Compatibility: [Greasemonkey 0.8.1+](Version_history#0.8.20090123.1)
+Compatibility: [Greasemonkey 0.8.1+](Version_history#08200901231)
 Access: [@grant](Metadata_Block#grant_)

 Parameters
@@ -59,9 +62,9 @@

 ## See Also

-* [GM_getValue]
-* [GM_setValue]
-* [GM_deleteValue]
+* [GM_getValue](GM_getValue)
+* [GM_setValue](GM_setValue)
+* [GM_deleteValue](GM_deleteValue)

 [⬆][toTop] [⬇][toBottom]

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mmartz</dc:creator><pubDate>Mon, 05 Aug 2019 09:39:10 -0000</pubDate><guid>https://sourceforge.netf49456715a886955a4aeaf1f894b518ff456faa7</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v18
+++ v19
@@ -35,25 +35,25 @@

 ### Core

-~~~~~~
-    GM_log(GM_listValues());
-~~~~~~
+``` js
+GM_log(GM_listValues());
+```

 [⬆][toTop] [⬇][toBottom] [⇧](#examples)

 ### Array of values

-~~~~~~
+``` js
 var vals = new Array();
 for each(var val in GM_listValues())
     vals.push(GM_getValue(val));
-~~~~~~
+```

 Equivalent:

-~~~~~~
+``` js
 var vals = GM_listValues().map(GM_getValue);
-~~~~~~
+```

 [⬆][toTop] [⬇][toBottom] [⇧](#examples)

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Thu, 05 May 2016 18:04:05 -0000</pubDate><guid>https://sourceforge.net23c17eacb663088b5bf24ac6a54be1b8cc836910</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -4,7 +4,7 @@

 This [API](Greasemonkey_Manual:API) method retrieves an array of names to values from persistent storage that start with the branch's root.

-Currently values are deleted from a SQLite database located in the [Scripts_directory]. Each script currently has one database named off of the subfolder created after installing a script with a file extension of `.db`.
+Currently values are retrieved from a SQLite database located in the [Scripts_directory]. Each script currently has one database named off of the subfolder created after installing a script with a file extension of `.db`.

 Prior to version 1.13 Numbers were limited to integers and no decimal values. Values were deleted from the [Firefox preferences](http://developer.mozilla.org/docs/Code_snippets:Preferences) back end and could be manually changed by typing about:config?filter=extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#namespace)/[name](Metadata_Block#name).foo

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Sat, 28 Jun 2014 08:04:28 -0000</pubDate><guid>https://sourceforge.net531877d8ef3c0777e2381229c3846d81528fe98e</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -23,6 +23,7 @@

 | **Properties** | &amp;emsp; |
 | --- | --- |
+| &amp;emsp; | &amp;emsp; |

   * There are currently no properties.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Sat, 28 Jun 2014 08:02:58 -0000</pubDate><guid>https://sourceforge.netef938610dcde9017ff6b3ffff4ff1aecdaafe639</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v15
+++ v16
@@ -19,11 +19,10 @@
 Compatibility: [Greasemonkey 0.8.1+](Version_history#0.8.20090123.1)
 Access: [@grant](Metadata_Block#grant_)

-
-
 Parameters

-**Properties**
+| **Properties** | &amp;emsp; |
+| --- | --- |

   * There are currently no properties.

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Sat, 28 Jun 2014 08:02:26 -0000</pubDate><guid>https://sourceforge.netc04480b638127bd16f91dead487575a82400e12d</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v14
+++ v15
@@ -1,94 +1,70 @@
-{{DISPLAYTITLE:GM_listValues}}{{Greasemonkey Manual TOC}} 
-
+[toTop]: #content_base "Top"
+[toBottom]: #site-footer "Bottom"
 ## Description

-This [API](Greasemonkey_Manual:API) method retrieves an array of names to values from persistent storage that start with the branch's root. 
+This [API](Greasemonkey_Manual:API) method retrieves an array of names to values from persistent storage that start with the branch's root.

-Currently values are retrieved from a SQLite database located in the [Scripts_directory]. Each script currently has one database named off of the subfolder created after installing a script with a file extension of 
-    
-    .db
+Currently values are deleted from a SQLite database located in the [Scripts_directory]. Each script currently has one database named off of the subfolder created after installing a script with a file extension of `.db`.

-Prior to version 1.13 values were retrieved from the [Firefox preferences](http://developer.mozilla.org/en/docs/Code_snippets:Preferences) back end and could be manually changed by typing [about:config](http://kb.mozillazine.org/About:config) in the address bar and searching for the preference name "
-    
-    extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#.40namespace)/[name](Metadata_Block#.40name).foo
+Prior to version 1.13 Numbers were limited to integers and no decimal values. Values were deleted from the [Firefox preferences](http://developer.mozilla.org/docs/Code_snippets:Preferences) back end and could be manually changed by typing about:config?filter=extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#namespace)/[name](Metadata_Block#name).foo

-". Numbers were limited to integers and no decimal values. 
-
-{{toFirstLast}} | [Examples](#Examples) | [See Also](#See_Also) | [Notes](#Notes) 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom] | [Examples](#examples) | [See Also](#see-also) | [Notes](#notes)

 ## Syntax

 **GM_listValues()**

-    Value: Function 
-    Returns: String Array 
-    Compatibility: [Greasemonkey 0.8.1+](Version_history#0.8.20090123.1) 
-    Access: [@grant](Metadata_Block#.40grant_) 
+Value: Function
+Returns: String Array
+Compatibility: [Greasemonkey 0.8.1+](Version_history#0.8.20090123.1)
+Access: [@grant](Metadata_Block#grant_)

-    

-Parameters 
+
+Parameters

 **Properties**

-    
+  * There are currently no properties.

-  * There are currently no properties. 
-
-{{toFirstLast}} 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom]

 ## Examples

-{{toFirstLast}} | [Array of values](#Array_of_values) 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom] | [Array of values](#array-of-values)

 ### Core

-{{Core samp |1=
-    
-    
+~~~~~~
     GM_log(GM_listValues());
-    
+~~~~~~

-}} 
-
-{{toFirstLast}} {{toPrev|2=Examples}} 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom] [&amp;#x21e7;](#examples)

 ### Array of values

-{{Good samp |1=
-    
-    
-    var vals = new Array();
-    for each(var val in GM_listValues())
-        vals.push(GM_getValue(val));
-    
+~~~~~~
+var vals = new Array();
+for each(var val in GM_listValues())
+    vals.push(GM_getValue(val));
+~~~~~~

-}} 
+Equivalent:

-Equivalent: 
+~~~~~~
+var vals = GM_listValues().map(GM_getValue);
+~~~~~~

-{{Good samp |1=
-    
-    
-    var vals = GM_listValues().map(GM_getValue);
-    
-
-}} 
-
-{{toFirstLast}} {{toPrev|2=Examples}} 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom] [&amp;#x21e7;](#examples)

 ## See Also

-  * [GM_getValue] 
-  * [GM_setValue] 
-  * [GM_deleteValue] 
+* [GM_getValue]
+* [GM_setValue]
+* [GM_deleteValue]

-{{toFirstLast}} 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom]

 ## Notes

-{{toFirstLast}} 
-
-{{Greasemonkey Manual TOC}}
-
-[L](Category:API_Reference) 
+[&amp;#x2b06;][toTop] [&amp;#x2b07;][toBottom]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Sat, 28 Jun 2014 07:51:07 -0000</pubDate><guid>https://sourceforge.net7bf08f08090f05af373fee256b39660025df7d4c</guid></item><item><title>GM_listValues modified by Martz</title><link>https://sourceforge.net/p/greasemonkey/wiki/GM_listValues/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v13
+++ v14
@@ -8,7 +8,7 @@

     .db

-Prior to version 1.13 values were retrieved from the [Firefox preferences](http://developer.mozilla.org/en/docs/Code_snippets:Preferences) back end and can be manually changed by typing [about:config](http://kb.mozillazine.org/About:config) in the address bar and searching for the preference name "
+Prior to version 1.13 values were retrieved from the [Firefox preferences](http://developer.mozilla.org/en/docs/Code_snippets:Preferences) back end and could be manually changed by typing [about:config](http://kb.mozillazine.org/About:config) in the address bar and searching for the preference name "

     extensions.greasemonkey.scriptvals.[namespace](Metadata_Block#.40namespace)/[name](Metadata_Block#.40name).foo

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Martz</dc:creator><pubDate>Fri, 27 Jun 2014 23:42:41 -0000</pubDate><guid>https://sourceforge.net9c1a400507d0a821e2d5594349bb3e4a5c97fbf4</guid></item></channel></rss>