<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on User Script Updates | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/2296</link>
    <description>Recent comments on userscript: User Script Updates</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>User Script Updates and Firefox Portable, replied by zegames</title>
      <description>&lt;p&gt;How to configure this script to work with an portable Firefox?&lt;/p&gt;

&lt;p&gt;Always fails to find the profile folder to detect installed scripts.&lt;/p&gt;</description>
      <pubDate>Wed, 11 Mar 2009 19:56:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:23024:101886</guid>
      <author>zegames</author>
      <link>http://userscripts.org/posts/101886</link>
    </item>
    <item>
      <title>Bug?, replied by Patrick C. McGinty</title>
      <description>&lt;p&gt;Is it normally for a pop-up window to come up every time for the same script?&lt;/p&gt;</description>
      <pubDate>Fri, 06 Mar 2009 22:26:59 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:22775:100727</guid>
      <author>Patrick C. McGinty</author>
      <link>http://userscripts.org/posts/100727</link>
    </item>
    <item>
      <title>Fix for it asking to update itself, replied by tj111</title>
      <description>&lt;p&gt;Worked for me so far, thanks.  Here is what the new function should look like formatted correctly.
&lt;br /&gt;&lt;pre&gt;
function setStoredValue (strName, varValue) {
	try {
		if (GM_setValue &amp;amp;&amp;amp; GM_setValue !== win.GM_setValue) {
			window.setTimeout(function(){
				GM_setValue(strName, varValue)
			}, 0);
		}
	} catch (ex) {}
	return varValue;
};
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 26 Jan 2009 17:31:25 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:20475:92102</guid>
      <author>tj111</author>
      <link>http://userscripts.org/posts/92102</link>
    </item>
    <item>
      <title>0 uPDATES FOUND, replied by gabedibble</title>
      <description>&lt;p&gt;&gt;&gt; &lt;a href=&quot;http://userscripts.org/topics/20559&quot;&gt;http://userscripts.org/topics/20559&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;cheers =)&lt;/p&gt;</description>
      <pubDate>Tue, 20 Jan 2009 18:20:38 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18888:91062</guid>
      <author>gabedibble</author>
      <link>http://userscripts.org/posts/91062</link>
    </item>
    <item>
      <title>Update-Checking that works..., replied by gabedibble</title>
      <description>&lt;p&gt;User Script Updates No Longer works.&lt;/p&gt;

&lt;p&gt;yeah, it sucks, but since this project was abandoned, then a recent FF-version-update forced the script itself to not work properly, something had to be done&lt;/p&gt;

&lt;p&gt;Thanks to Mindeye, we now have a clean &amp;amp; efficient Auto Update-Checking functionality&lt;/p&gt;

&lt;p&gt;Check out my script @ &lt;a href=&quot;http://userscripts.org/scripts/show/12917&quot;&gt;http://userscripts.org/scripts/show/12917&lt;/a&gt; to see how to implement this functionality&lt;/p&gt;

&lt;p&gt;You can also email me @ [ gdibble [aht] gmail [doht] com ] if  you have any questions&lt;/p&gt;

&lt;p&gt;Final thanks to Richard Gibson for the original updater script, and to all of the ScriptMasters out there who have kept this site alive!
&lt;br /&gt;Cheers!&lt;/p&gt;

&lt;p&gt;Best regards,&lt;/p&gt;

&lt;p&gt;gabedibble [&lt;a href=&quot;http://userscripts.org/users/24894&quot;&gt;http://userscripts.org/users/24894&lt;/a&gt;]&lt;/p&gt;</description>
      <pubDate>Sun, 18 Jan 2009 22:51:15 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:20559:90727</guid>
      <author>gabedibble</author>
      <link>http://userscripts.org/posts/90727</link>
    </item>
    <item>
      <title>Fix for it asking to update itself, replied by queeup</title>
      <description>&lt;p&gt;thx&lt;/p&gt;</description>
      <pubDate>Fri, 16 Jan 2009 13:17:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:20475:90318</guid>
      <author>queeup</author>
      <link>http://userscripts.org/posts/90318</link>
    </item>
    <item>
      <title>Fix for it asking to update itself, replied by Otto42</title>
      <description>&lt;p&gt;If you have a recent version of greasemonkey, then this script asks to update itself on every page. Annoying. Here's the fix:&lt;/p&gt;

&lt;p&gt;Around line 595, you'll find this:
&lt;br /&gt;function setStoredValue (strName, varValue) {
&lt;br /&gt;	try {
&lt;br /&gt;		if (GM_setValue &amp;amp;&amp;amp; GM_setValue !== win.GM_setValue) {
&lt;br /&gt;			GM_setValue(strName, varValue);
&lt;br /&gt;		}
&lt;br /&gt;	} catch (ex) {}
&lt;br /&gt;	return varValue;
&lt;br /&gt;};&lt;/p&gt;

&lt;p&gt;Change that to this:
&lt;br /&gt;function setStoredValue (strName, varValue) {
&lt;br /&gt;	try {
&lt;br /&gt;		if (GM_setValue &amp;amp;&amp;amp; GM_setValue !== win.GM_setValue) {
&lt;br /&gt;			window.setTimeout(function() {
&lt;br /&gt;			GM_setValue(strName, varValue);
&lt;br /&gt;			}, 0);&lt;/p&gt;

&lt;p&gt;		}
&lt;br /&gt;	} catch (ex) {}
&lt;br /&gt;	return varValue;
&lt;br /&gt;};&lt;/p&gt;

&lt;p&gt;Problem solved.&lt;/p&gt;</description>
      <pubDate>Fri, 16 Jan 2009 05:55:02 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:20475:90285</guid>
      <author>Otto42</author>
      <link>http://userscripts.org/posts/90285</link>
    </item>
    <item>
      <title>0 uPDATES FOUND, replied by cjm</title>
      <description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;it doesn't find new Updates for my Script.&lt;/p&gt;

&lt;p&gt;Can someone please direct me to the troubleshooting help?&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/38065&quot;&gt;http://userscripts.org/scripts/show/38065&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;thx&lt;/p&gt;</description>
      <pubDate>Fri, 12 Dec 2008 09:09:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:18888:82870</guid>
      <author>cjm</author>
      <link>http://userscripts.org/posts/82870</link>
    </item>
    <item>
      <title>Archived Comments, replied by s33k3r</title>
      <description>&lt;p&gt;I have the same problem as nathaniel_higgins. Is there some way to fix this or are we doing something wrong?&lt;/p&gt;</description>
      <pubDate>Tue, 12 Aug 2008 19:15:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59052</guid>
      <author>s33k3r</author>
      <link>http://userscripts.org/posts/59052</link>
    </item>
    <item>
      <title>Archived Comments, replied by nathaniel_higgins</title>
      <description>&lt;p&gt;It keeps putting up this dialog box every time I visit a page with FF3&lt;/p&gt;

&lt;p&gt;&quot;A user script has requested automatic update checks:&lt;/p&gt;

&lt;p&gt;name: User Script Updates
&lt;br /&gt;namespace: &lt;a href=&quot;http://userscripts.org/people/336&quot;&gt;http://userscripts.org/people/336&lt;/a&gt;
&lt;br /&gt;description: Checks for updated versions of user scripts that request it, and
&lt;br /&gt;      notifies the user of their existence.
&lt;br /&gt;homepage: &lt;a href=&quot;http://userscripts.org/scripts/show/2296&quot;&gt;http://userscripts.org/scripts/show/2296&lt;/a&gt;
&lt;br /&gt;location: &lt;a href=&quot;http://userscripts.org/scripts/source/2296.user.js&quot;&gt;http://userscripts.org/scripts/source/2296.user.js&lt;/a&gt;
&lt;br /&gt;version: 0.3
&lt;br /&gt;date: Tue Jun 20 2006&lt;/p&gt;

&lt;p&gt;Allow?&quot;&lt;/p&gt;

&lt;p&gt;It gets very annoying&lt;/p&gt;</description>
      <pubDate>Sat, 05 Jul 2008 20:02:29 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59053</guid>
      <author>nathaniel_higgins</author>
      <link>http://userscripts.org/posts/59053</link>
    </item>
    <item>
      <title>Archived Comments, replied by Razalduria</title>
      <description>&lt;p&gt;Same here (FF3).
&lt;br /&gt;Error-Console:
&lt;br /&gt;Fehler: Greasemonkey access violation: unsafeWindow cannot call GM_setValue.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Jul 2008 15:00:22 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59054</guid>
      <author>Razalduria</author>
      <link>http://userscripts.org/posts/59054</link>
    </item>
    <item>
      <title>Archived Comments, replied by 3d0xp0xy</title>
      <description>&lt;p&gt;I'm having the same problem as Alvin on Fx 3.0.&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jun 2008 19:45:54 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59055</guid>
      <author>3d0xp0xy</author>
      <link>http://userscripts.org/posts/59055</link>
    </item>
    <item>
      <title>Archived Comments, replied by Matrix0191</title>
      <description>&lt;p&gt;can someone please fix this to work in FF 3 Please&lt;/p&gt;</description>
      <pubDate>Wed, 18 Jun 2008 22:41:07 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59056</guid>
      <author>Matrix0191</author>
      <link>http://userscripts.org/posts/59056</link>
    </item>
    <item>
      <title>Archived Comments, replied by Alvin</title>
      <description>&lt;p&gt;Unfortunately, it seems borked in FF 3.0RC1 ... It spams me constantly (every couple of minutes) requesting update access for itself - and once it even popped up about 5 boxes and I had to click OK 5 times - all for permission to update itself.&lt;/p&gt;

&lt;p&gt;Borked.&lt;/p&gt;</description>
      <pubDate>Mon, 19 May 2008 04:51:30 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59057</guid>
      <author>Alvin</author>
      <link>http://userscripts.org/posts/59057</link>
    </item>
    <item>
      <title>Archived Comments, replied by Piotr P. Karwasz</title>
      <description>&lt;p&gt;&lt;strong&gt;M0rph3u5:&lt;/strong&gt; the script still works, at least for me.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Richard:&lt;/strong&gt; All the scripts I develop use yours for updates. Thank you very much.&lt;/p&gt;

&lt;p&gt;If you ever care to update the list of scripts that use your, here is the list:&lt;/p&gt;

&lt;p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/25856&quot;&gt;Facebook Packrat Autoclicker&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/25396&quot;&gt;Facebook Monsters Enhancer&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 02:20:48 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59058</guid>
      <author>Piotr P. Karwasz</author>
      <link>http://userscripts.org/posts/59058</link>
    </item>
    <item>
      <title>Archived Comments, replied by M0rph3u5</title>
      <description>&lt;p&gt;dunno it aint showin on grease mokey user script commands :( for me&lt;/p&gt;</description>
      <pubDate>Wed, 26 Mar 2008 00:11:59 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59059</guid>
      <author>M0rph3u5</author>
      <link>http://userscripts.org/posts/59059</link>
    </item>
    <item>
      <title>Archived Comments, replied by jiaminn212</title>
      <description>&lt;p&gt;is this script still working?&lt;/p&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:07:35 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59060</guid>
      <author>jiaminn212</author>
      <link>http://userscripts.org/posts/59060</link>
    </item>
    <item>
      <title>Archived Comments, replied by Respect</title>
      <description>&lt;p&gt;i can't make updates to my scripts...
&lt;br /&gt;i have to change something in source of script?&lt;/p&gt;

&lt;p&gt;it donesn't updates nothing :&#180;(&lt;/p&gt;</description>
      <pubDate>Fri, 07 Mar 2008 00:18:56 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59061</guid>
      <author>Respect</author>
      <link>http://userscripts.org/posts/59061</link>
    </item>
    <item>
      <title>Archived Comments, replied by Heidi</title>
      <description>&lt;p&gt;I like that I can use this to add all the URLs for the scripts I've installed, but I wish that doing so were a bit easier.&lt;/p&gt;

&lt;p&gt;Perhaps a keyboard shortcut for adding the URLs?&lt;/p&gt;

&lt;p&gt;I know it's not meant to be used this way, but I prefer to use it this way so I'm ensured I'll get the updates whenever they come in :$&lt;/p&gt;</description>
      <pubDate>Tue, 23 Oct 2007 15:34:46 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59062</guid>
      <author>Heidi</author>
      <link>http://userscripts.org/posts/59062</link>
    </item>
    <item>
      <title>Archived Comments, replied by gabedibble</title>
      <description>&lt;p&gt;Also compatible with Google i&amp;amp;Search Dark + Enhancements (&lt;a href=&quot;http://userscripts.org/scripts/show/12917&quot;&gt;http://userscripts.org/scripts/show/12917&lt;/a&gt;); ENJOY!&lt;/p&gt;</description>
      <pubDate>Wed, 10 Oct 2007 23:19:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59063</guid>
      <author>gabedibble</author>
      <link>http://userscripts.org/posts/59063</link>
    </item>
    <item>
      <title>Archived Comments, replied by Sean Watson</title>
      <description>&lt;p&gt;I removed support for this from my script. I have seen no proof that it works, so I removed the useless code&lt;/p&gt;</description>
      <pubDate>Fri, 24 Aug 2007 06:00:16 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59064</guid>
      <author>Sean Watson</author>
      <link>http://userscripts.org/posts/59064</link>
    </item>
    <item>
      <title>Archived Comments, replied by engtech</title>
      <description>&lt;p&gt;Just a thought... is there anyway to set it up to only check for updates once every two weeks or so?&lt;/p&gt;</description>
      <pubDate>Thu, 23 Aug 2007 20:12:05 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59065</guid>
      <author>engtech</author>
      <link>http://userscripts.org/posts/59065</link>
    </item>
    <item>
      <title>Archived Comments, replied by vOidSenses</title>
      <description>&lt;p&gt;i was wondering if anyone could help me using this script functionality, i think i did it right but the script isn't detecting any new version even if there is...&lt;/p&gt;

&lt;p&gt;the script: &lt;a href=&quot;http://userscripts.org/scripts/show/8938&quot;&gt;http://userscripts.org/scripts/show/8938&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 08 Aug 2007 15:58:24 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59066</guid>
      <author>vOidSenses</author>
      <link>http://userscripts.org/posts/59066</link>
    </item>
    <item>
      <title>Archived Comments, replied by steven0451</title>
      <description>&lt;p&gt;The script called: digg - add mirrors, is also said to be compatible with this script. (&lt;a href=&quot;http://userscripts.org/scripts/show/7585&quot;&gt;http://userscripts.org/scripts/show/7585&lt;/a&gt;)&lt;/p&gt;</description>
      <pubDate>Thu, 02 Aug 2007 08:40:46 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59067</guid>
      <author>steven0451</author>
      <link>http://userscripts.org/posts/59067</link>
    </item>
    <item>
      <title>Archived Comments, replied by Sean Watson</title>
      <description>&lt;p&gt;I believe that I got my &lt;a href=&quot;http://userscripts.org/scripts/show/10640&quot;&gt;script&lt;/a&gt; to support it too.&lt;/p&gt;</description>
      <pubDate>Sun, 15 Jul 2007 03:37:05 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:14616:59068</guid>
      <author>Sean Watson</author>
      <link>http://userscripts.org/posts/59068</link>
    </item>
  </channel>
</rss>
