<?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>Tubejumper &#187; Greasemonkey</title>
	<atom:link href="http://www.tubejumper.com/index.php/category/greasemonkey/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tubejumper.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Apr 2010 15:24:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><cloud domain='www.tubejumper.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Search Topics for Google Reader via Greasemonkey</title>
		<link>http://www.tubejumper.com/index.php/2009/03/03/search-topics-for-google-reader/</link>
		<comments>http://www.tubejumper.com/index.php/2009/03/03/search-topics-for-google-reader/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 00:47:49 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.tubejumper.com/?p=39</guid>
		<description><![CDATA[Here&#8217;s another first for me, a Greasemonkey script to put Search links into the nav area of Google Reader.
Userscripts.org
Unfortunately I didn&#8217;t have time to build in a way to store search topics in cookies, maybe next version.
I was surprised at the lack of search operators.  I expected to be able to search just the title or return only unread ...]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another first for me, a Greasemonkey script to put Search links into the nav area of Google Reader.</p>
<p><a href="http://userscripts.org/scripts/show/43523">Userscripts.org</a></p>
<p>Unfortunately I didn&#8217;t have time to build in a way to store search topics in cookies, maybe next version.</p>
<p>I was surprised at the lack of search operators.  I expected to be able to search just the title or return only unread posts. </p>
<p>Here&#8217;s how to modify the script to add your own search topics.<br />
Open the script up and all you&#8217;ll need to modify is this section.</p>
<p><code>var smarttopics = new Array;<br />
smarttopics = {<br />
"<b>Buzz</b>" : "leak|deadpool|acquisition|rumor|layoff|merger",<br />
"Apple" : "apple|iphone",<br />
"Microsoft" : "microsoft|windows"<br />
};</code></p>
<p>Say you want to add a topic called Sun and it searches for Sun and Java.  Add the following line above the &#8220;Apple&#8221;&#8230; line.</p>
<p> &#8220;Sun&#8221; : &#8220;sun|java&#8221;,</p>
<p>Removing a topic is just deleting the line with that topic on it.  The biggest thing you&#8217;ll need to watch is the comma&#8217;s, make sure each line except the last has a comma after it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tubejumper.com/index.php/2009/03/03/search-topics-for-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Friendfeed on Twitter via Greasemonkey</title>
		<link>http://www.tubejumper.com/index.php/2008/10/15/friendfeed-on-twitter-via-greasemonkey/</link>
		<comments>http://www.tubejumper.com/index.php/2008/10/15/friendfeed-on-twitter-via-greasemonkey/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 00:15:57 +0000</pubDate>
		<dc:creator>shawn</dc:creator>
				<category><![CDATA[Friendfeed]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.tubejumper.com/index.php/2008/10/15/friendfeed-on-twitter-via-greasemonkey/</guid>
		<description><![CDATA[This was the first idea I had when I saw the mini-window real-time friendfeed.  It moves the main content of twitter over a bit and puts a friendfeed window on the left.  I also got it to put a search bar over the home section.
Get it here, friendfeed_on_twitter.user.js
Here&#8217;s just the search bar script, twitter_search.user.js
I also found out that ...]]></description>
			<content:encoded><![CDATA[<p>This was the first idea I had when I saw the mini-window real-time friendfeed.  It moves the main content of twitter over a bit and puts a friendfeed window on the left.  I also got it to put a search bar over the home section.</p>
<p>Get it here, <a href='/greasemonkey/friendfeed_on_twitter.user.js'>friendfeed_on_twitter.user.js</a></p>
<p>Here&#8217;s just the search bar script, <a href='/greasemonkey/twitter_search.user.js'>twitter_search.user.js</a></p>
<p>I also found out that Friendfeed updated their api with a way to query for a url.  So i built a greasemonkey script to add a link to friendfeed on every url.  I couldn&#8217;t figure out how to put the icon after the link and javascript isn&#8217;t something I&#8217;m an expert at.  So far the url search only works via the api and not on the search part of Friendfeed, so the icon opens a window with the xml output of the api call.  I fix this when you can search for a url on the main Friendfeed interface.</p>
<p>Get it here, <a href='/greasemonkey/friendfeed_link_on_twitt.user.js'>friendfeed_link_on_twitt.user.js</a></p>
<p>Be kind these are the first greasemonkey scripts I&#8217;ve made.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tubejumper.com/index.php/2008/10/15/friendfeed-on-twitter-via-greasemonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
