<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Using jQuery with&#160;Greasemonkey</title>
	<atom:link href="http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 21:45:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Jonathan</title>
		<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/#comment-782</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Sat, 29 Aug 2009 05:34:23 +0000</pubDate>
		<guid isPermaLink="false">http://abs.lavitech.com/?p=90#comment-782</guid>
		<description>Otto - previously mentioned by James was the &quot;@require&quot; metadata that you can add to the top of the file.  I would highly suggest viewing this article regarding how to create your own .user.js file and then installing it with greasemonkey, http://greasemonkey.mozdev.org/authoring.html

Hope that helps!</description>
		<content:encoded><![CDATA[<p>Otto &#8211; previously mentioned by James was the &#8220;@require&#8221; metadata that you can add to the top of the file.  I would highly suggest viewing this article regarding how to create your own .user.js file and then installing it with greasemonkey, <a href="http://greasemonkey.mozdev.org/authoring.html" rel="nofollow">http://greasemonkey.mozdev.org/authoring.html</a></p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otto Teixeira</title>
		<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/#comment-781</link>
		<dc:creator>Otto Teixeira</dc:creator>
		<pubDate>Thu, 06 Aug 2009 12:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://abs.lavitech.com/?p=90#comment-781</guid>
		<description>Hi. This is very nice, thanks.
But is there a way to avoid the download of jquery everytime? I tried a local URL (eg /home/otto/jquery.js) and it doesn&#039;t work.

That &quot;lag&quot; is a bit boring and requires internet access.

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi. This is very nice, thanks.<br />
But is there a way to avoid the download of jquery everytime? I tried a local URL (eg /home/otto/jquery.js) and it doesn&#8217;t work.</p>
<p>That &#8220;lag&#8221; is a bit boring and requires internet access.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cory LaViska</title>
		<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/#comment-780</link>
		<dc:creator>Cory LaViska</dc:creator>
		<pubDate>Sun, 22 Mar 2009 21:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://abs.lavitech.com/?p=90#comment-780</guid>
		<description>Agreed. Thanks, James, for bringing up the new @require method :)</description>
		<content:encoded><![CDATA[<p>Agreed. Thanks, James, for bringing up the new @require method :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cecil</title>
		<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/#comment-779</link>
		<dc:creator>Cecil</dc:creator>
		<pubDate>Sun, 22 Mar 2009 05:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://abs.lavitech.com/?p=90#comment-779</guid>
		<description>Just wrote my first webmonkey script and used jquery, WOOT! Thanks guys..

btw, the // @require &lt;url&gt; thing worked just as James said it would.. one line, no fuss and no muss hehe :)</description>
		<content:encoded><![CDATA[<p>Just wrote my first webmonkey script and used jquery, WOOT! Thanks guys..</p>
<p>btw, the // @require <url> thing worked just as James said it would.. one line, no fuss and no muss hehe :)</url></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.abeautifulsite.net/blog/2009/01/using-jquery-with-greasemonkey/#comment-778</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 26 Feb 2009 15:41:10 +0000</pubDate>
		<guid isPermaLink="false">http://abs.lavitech.com/?p=90#comment-778</guid>
		<description>Surely in the year or more since the first betas of v0.8 came out it&#039;s no longer necessary to do this? You can instead just specify any files you want to get included in the metadata e.g.

// @require        http://jqueryjs.googlecode.com/files/jquery-1.3.2.js

which will execute that file just before your script runs.

There&#039;s a bit of a big hole in GM though as if you use the &quot;New User Script&quot; option in menu then this doesn&#039;t work at all - GM only imports anything referenced by @require the first time you install the script, and the &quot;New User Script&quot; option creates and installs a default user script for you, so even if you add the @require it fails.

It&#039;s not much harder to create a .user.js file manually and browse to it... took me ages to find out I needed to though!</description>
		<content:encoded><![CDATA[<p>Surely in the year or more since the first betas of v0.8 came out it&#8217;s no longer necessary to do this? You can instead just specify any files you want to get included in the metadata e.g.</p>
<p>// @require        <a href="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js" rel="nofollow">http://jqueryjs.googlecode.com/files/jquery-1.3.2.js</a></p>
<p>which will execute that file just before your script runs.</p>
<p>There&#8217;s a bit of a big hole in GM though as if you use the &#8220;New User Script&#8221; option in menu then this doesn&#8217;t work at all &#8211; GM only imports anything referenced by @require the first time you install the script, and the &#8220;New User Script&#8221; option creates and installs a default user script for you, so even if you add the @require it fails.</p>
<p>It&#8217;s not much harder to create a .user.js file manually and browse to it&#8230; took me ages to find out I needed to though!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

