<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PatCavit.com &#187; GreaseMonkey</title>
	<atom:link href="http://patcavit.com/category/greasemonkey/feed/" rel="self" type="application/rss+xml" />
	<link>http://patcavit.com</link>
	<description>I &#60;3 Programming</description>
	<lastBuildDate>Fri, 02 Jul 2010 19:19:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>New Flickr API Response Formats</title>
		<link>http://patcavit.com/2006/09/28/new-flickr-api-response-formats/</link>
		<comments>http://patcavit.com/2006/09/28/new-flickr-api-response-formats/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 23:25:02 +0000</pubDate>
		<dc:creator>Pat Cavit</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://patcavit.com/2006/09/28/new-flickr-api-response-formats/</guid>
		<description><![CDATA[Flickr just launched two new formats for responses to API queries. Both JSON and Serialized PHP Objects are now supported. I don&#8217;t think I need to mention how awesome this is but let me say: it&#8217;s really really awesome. JSON support means that querying via JavaScript in stuff like GreaseMonkey plugins will now be easier [...]]]></description>
			<content:encoded><![CDATA[<p>Flickr just launched two new formats for responses to API queries.  Both <a href="http://flickr.com/services/api/response.json.html">JSON</a> and <a href="http://flickr.com/services/api/response.php.html">Serialized PHP Objects</a> are now supported.  I don&#8217;t think I need to mention how awesome this is but let me say: it&#8217;s really really awesome.  <a href='http://json.org'>JSON</a> support means that querying via JavaScript in stuff like GreaseMonkey plugins will now be easier than ever.  REST is great and all but parsing XML in JavaScript is not something I ever want to do again.  I tried it for a while and it made me pretty unhappy.  Serialized PHP is pretty cool because there&#8217;s nothing like making a call to unserialize() and suddenly having a fully-populated PHP object ready for grabbing data from.</p>
<p>I&#8217;ve been harassing my friend at Y! about this ever since I first played with the Flickr API and I&#8217;m glad it&#8217;s finally happened.  Granted, it&#8217;s all for <a href='http://hackday.org'>Yahoo! HackDay</a> but I can still pretend it happened because I asked for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://patcavit.com/2006/09/28/new-flickr-api-response-formats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GM Script: SA Forums Spoiler Rewriter</title>
		<link>http://patcavit.com/2005/03/07/gm-script-sa-forums-spoiler-rewriter/</link>
		<comments>http://patcavit.com/2005/03/07/gm-script-sa-forums-spoiler-rewriter/#comments</comments>
		<pubDate>Mon, 07 Mar 2005 09:50:08 +0000</pubDate>
		<dc:creator>Pat Cavit</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://patcavit.com/2005/03/07/gm-script-sa-forums-spoiler-rewriter/</guid>
		<description><![CDATA[This is a pretty specific extension that not many people will have a use for, but it was good practice and taught me a fair bit about how the DOM works. Basically it searches through all SomethingAwful Forums pages for spoiler tags. If it finds them it rewrites the spoiler so that it is visible [...]]]></description>
			<content:encoded><![CDATA[<p>This is a pretty specific extension that not many people will have a use for, but it was good practice and taught me a fair bit about how the DOM works.  Basically it searches through all SomethingAwful Forums pages for spoiler tags.  If it finds them it rewrites the spoiler so that it is visible without a mouseover.  The text still has the inverted color scheme for easy identification, it just no longer requires hovering with the mouse to be readable.</p>
<p>This was requested by a friend and I&#8217;m glad I was able to oblige.</p>
<p>Download <a href='http://patcavit.com/greasemonkey/spoiler_rewriter.user.js'>here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://patcavit.com/2005/03/07/gm-script-sa-forums-spoiler-rewriter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GM Script: Google Image Re-Linker</title>
		<link>http://patcavit.com/2005/03/06/more-monkey-business/</link>
		<comments>http://patcavit.com/2005/03/06/more-monkey-business/#comments</comments>
		<pubDate>Sun, 06 Mar 2005 22:52:56 +0000</pubDate>
		<dc:creator>Pat Cavit</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://patcavit.com/2005/03/06/more-monkey-business/</guid>
		<description><![CDATA[In my attempt to make GreaseMonkey do everything ever related to page rewriting in Firefox, I converted roachfiend&#8217;s Google Images Re-linker to a GreaseMonkey script. I just got his permission to post this, so you can snag it here. It&#8217;s purpose is to make links in Google Image Search point directly to the image, instead [...]]]></description>
			<content:encoded><![CDATA[<p>In my attempt to make GreaseMonkey do everything ever related to page rewriting in Firefox, I converted <a href='http://roachfiend.com'>roachfiend&#8217;s</a> <a href='http://roachfiend.com/archives/2005/03/06/google-images-re-linker/'>Google Images Re-linker</a> to a GreaseMonkey script.</p>
<p>I just got his permission to post this, so you can snag it <a href='http://patcavit.com/greasemonkey/girl.user.js'>here</a>.   It&#8217;s purpose is to make links in Google Image Search point directly to the image, instead of loading up a thumbnail in a frame.  It works for me but my roommate complained about it not, so feel free to comment if it&#8217;s being odd.  I can&#8217;t promise that I&#8217;ll be able to fix it since I&#8217;m still just getting my feet wet, but I can certainly try.</p>
<p><strong>PS:</strong> <a href='http://roachfiend.com'>Roachfiend</a> writes some really awesome firefox extensions, you should check them out.</p>
]]></content:encoded>
			<wfw:commentRss>http://patcavit.com/2005/03/06/more-monkey-business/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>GM Script: Page Recolorator</title>
		<link>http://patcavit.com/2005/03/01/11/</link>
		<comments>http://patcavit.com/2005/03/01/11/#comments</comments>
		<pubDate>Tue, 01 Mar 2005 18:15:58 +0000</pubDate>
		<dc:creator>Pat Cavit</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://patcavit.com/2005/03/01/11/</guid>
		<description><![CDATA[So after being linked to GreaseMonkey and getting all excited about it before going to bed, I decided I had to give it a shot. Now granted, my knowledge of using advanced JavaScript is somewhat limited. However, after seeing a request for a GreaseMonkey Script that would simply the colorization of a page I knew [...]]]></description>
			<content:encoded><![CDATA[<p>So after being linked to <a href='http://greasemonkey.mozdev.org'>GreaseMonkey</a> and getting all excited about it before going to bed, I decided I had to give it a shot.  Now granted, my knowledge of using advanced JavaScript is somewhat limited.  However, after seeing a <a href='http://69.90.152.144/collab/GreaseMonkeyUserScriptRequest'>request for a GreaseMonkey Script</a> that would simply the colorization of a page I knew I had to give it a shot.  I was able to almost copy the code from <a href='http://www.squarefree.com/bookmarklets/zap.html'>here</a> verbatim, with a few simple changes to allow it to not throw 20 million errors.</p>
<p>If for some reason you want this, you can <a href='http://patcavit.com/greasemonkey/recolorator.user.js'>download it here</a>. </p>
<p>More cool scripts can be found <a href='http://dunck.us/collab/GreaseMonkeyUserScripts'>here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://patcavit.com/2005/03/01/11/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>GreaseMonkey Is Cool</title>
		<link>http://patcavit.com/2005/03/01/greasemonkey-is-cool/</link>
		<comments>http://patcavit.com/2005/03/01/greasemonkey-is-cool/#comments</comments>
		<pubDate>Tue, 01 Mar 2005 11:07:49 +0000</pubDate>
		<dc:creator>Pat Cavit</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>

		<guid isPermaLink="false">http://patcavit.com/2005/03/01/greasemonkey-is-cool/</guid>
		<description><![CDATA[I was linked from mozdev.org &#8211; greasemonkey this evening by a good friend&#8217;s blog and I have to say, this is really cool. It&#8217;s an extension for FireFox that allows you to inject custom JavaScript into any pages that match a certain URL regex. It appears to be extremely flexible, and thus far I&#8217;m really [...]]]></description>
			<content:encoded><![CDATA[<p>I was linked from <a href="http://greasemonkey.mozdev.org/">mozdev.org &#8211; greasemonkey</a> this evening by a <a href='http://faktory.org/m/blog'>good friend&#8217;s blog</a> and I have to say, this is really cool.  It&#8217;s an extension for FireFox that allows you to inject custom JavaScript into any pages that match a certain URL regex.  It appears to be extremely flexible, and thus far I&#8217;m really impressed.  Once it&#8217;s no longer 3am I plan to look into writing some of my own GreaseMonkey scripts to see about fixing some stuff that bugs me on certain sites.</p>
<p>I&#8217;ll report back once some progress has been made.</p>
]]></content:encoded>
			<wfw:commentRss>http://patcavit.com/2005/03/01/greasemonkey-is-cool/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
