<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>greasemonkey &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/greasemonkey/</link>
	<description>Feed of posts on WordPress.com tagged "greasemonkey"</description>
	<pubDate>Fri, 04 Jul 2008 15:26:01 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[I'm a greasy little monkey]]></title>
<link>http://notcharles.wordpress.com/?p=22</link>
<pubDate>Wed, 02 Jul 2008 02:37:32 +0000</pubDate>
<dc:creator>Joe</dc:creator>
<guid>http://notcharles.wordpress.com/?p=22</guid>
<description><![CDATA[Wow, work&#8217;s really been kicking my ass lately.  I&#8217;ve been meaning to update this blog fo]]></description>
<content:encoded><![CDATA[<p>Wow, work's really been kicking my ass lately.  I've been meaning to update this blog for ages, but I've had no time.  Finally got the day off and spent an hour or so learning to use Javascript and Greasemonkey.  While we're waiting for something more substantial, here's my first script.  You might even find it useful:</p>
<pre>
// ==UserScript==
// @name           Include Linked Images
// @namespace      ca.notcharles.greasemonkey
// @description    Add linked images to the end of a webpage.
// @include        http://www.wizards.com/*&#38;pf=true
// ==/UserScript==

/*
Copyright (c) 2008 Joe Mason 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

var body = document.getElementsByTagName('body')[0];
var anchors = document.getElementsByTagName('a');

for (var i = 0; i &#60; anchors.length; i++)
{
	var anchor = anchors[i];

	// only process anchors containing images
	if (anchor.getElementsByTagName('img').length == 0) continue;

	// add the target of the image to the end of the document
	var href = anchor.getAttribute('href');
	var hr = document.createElement('hr');
	body.appendChild(hr);
	var img = document.createElement('img');
	img.setAttribute('src', href);
	body.appendChild(img);
}
</pre>
<p>I won't bother going through it because there are a million Javascript tutorials out there.</p>
<p>So what's it useful for?   Well, <a href="http://wizards.com">Wizards of the Coast</a> have been releasing <a href="http://wizards.com/default.asp?x=dnd/dragon">Dragon</a> and <a href="http://wizards.com/default.asp?x=dnd/dungeon">Dungeon</a> magazine articles online - free, for the time being.  Sooner or later they'll start charging for them so I've been downloading as many as I can and saving them as PDF's.  (The best way to do this is to click on the "Printer Friendly" link at the bottom of an article, and then print to PDF.  On Windows you'll have to install an add-on for this - I like <a href="http://sourceforge.net/projects/pdfcreator/">PDFCreator</a>.)</p>
<p>The problem is that some of them have thumbnailed images which link to a full-sized version, and I'd really like the full images to end up in the PDF.  So this script just finds every image which is a link, and appends that image to the end of the page.  It only runs on the printable format page (the "pf=true" at the end of the @include line).  It just occurred to me it should really be checking that the link actually leads to an image, but meh - that's not very likely for these articles, and if it happens I'll deal with it then.</p>
<p><a href="http://www.wizards.com/default.asp?x=dnd/dumm/20071031">This article</a> is a nice simple example to try it on.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cool Greasemonkey scripts]]></title>
<link>http://wonderingpondering.wordpress.com/?p=237</link>
<pubDate>Mon, 30 Jun 2008 16:19:29 +0000</pubDate>
<dc:creator>wonderingpondering</dc:creator>
<guid>http://wonderingpondering.wordpress.com/?p=237</guid>
<description><![CDATA[This Computerworld article has 17 Grease monkey scripts to turbo charge your browser. They have a wi]]></description>
<content:encoded><![CDATA[<p>This Computerworld article has <a title="Greasemonkey scripts to turbo charge your browser" href="http://computerworld.com/action/article.do?command=viewArticleBasic&#38;articleId=9103818&#38;intsrc=hm_list" target="_blank">17 Grease monkey scripts to turbo charge your browser</a>. They have a wide range of applicability, and there are several I'm going to check out and incorporate.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Friendfeed Greasemonkey Scripts]]></title>
<link>http://haochen.wordpress.com/?p=49</link>
<pubDate>Sun, 29 Jun 2008 09:39:07 +0000</pubDate>
<dc:creator>Hao Chen</dc:creator>
<guid>http://haochen.wordpress.com/?p=49</guid>
<description><![CDATA[
New! From the creator of Better Friendfeed &#8220;subscribed to me&#8221; is an even potentially co]]></description>
<content:encoded><![CDATA[<p><a href="http://friendfeed.com" target="_blank"><img class="alignnone" src="http://friendfeed.com/static/images/logo-b.png" alt="Friendfeed" /></a></p>
<p>New! From the creator of <a href="http://userscripts.org/scripts/show/29148" target="_blank">Better Friendfeed "subscribed to me"</a> is an even potentially cooler script, <a href="http://userscripts.org/scripts/show/29324" target="_blank">Better Friendfeed "recommended"</a>.  Sick of Friendfeed's dull, static <a href="http://friendfeed.com/settings/recommended" target="_blank">recommended</a> page? Use "better recommended" to ACTUALLY find some interesting friends! How does it work, you ask? It loads up your subscriptions, then loads up your subscriptions' subscriptions, and lists in order the most popular subscriptions that your subscriptions are subscribed to!  WTH did you just say, you ask?  I have no clue; it's 5am on a Sunday! YAY!</p>
<p>Anyway, you can <a href="http://userscripts.org/scripts/show/29324" target="_blank">install Better Recommended here</a>.</p>
<p><a href="http://i32.tinypic.com/25um8ah.jpg" target="_blank"><img class="alignnone" src="http://i32.tinypic.com/25um8ah.jpg" alt="Better Friendfeed \" width="383" height="276" /></a></p>
<p>...or <a href="http://userscripts.org/scripts/show/29148" target="_blank">Better Subscribed To Me here</a>.</p>
<p><a href="http://i31.tinypic.com/2vkkdi9.jpg" target="_blank"><img class="alignnone" src="http://i31.tinypic.com/2vkkdi9.jpg" alt="Better subscribed to me" width="379" height="187" /></a></p>
<p>...or <a href="http://userscripts.org/scripts/show/29340" target="_blank">Add Favicon to FriendFeed Room links here</a>.</p>
<p><a href="http://i29.tinypic.com/21kihqt.jpg" target="_blank"><img class="alignnone" src="http://i29.tinypic.com/21kihqt.jpg" alt="Favicon for Friendfeed Rooms" width="383" height="78" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[FilmAffinityPlus v1.1.0]]></title>
<link>http://javierarias.wordpress.com/?p=41</link>
<pubDate>Fri, 27 Jun 2008 18:41:56 +0000</pubDate>
<dc:creator>javierarias</dc:creator>
<guid>http://javierarias.wordpress.com/?p=41</guid>
<description><![CDATA[Me veo forzado a sacar una actualización de FilmAffinityPlus debido a cambios en la página de Film]]></description>
<content:encoded><![CDATA[<p>Me veo forzado a sacar una actualización de <a title="Página oficial de FilmAffinityPlus" href="http://javierarias.wordpress.com/scripts/filmaffinityplus/">FilmAffinityPlus</a> debido a cambios en la página de FilmAffinity que hacen que no funcionen todas las funcionalidades que ofrece mi script.</p>
<h1 style="text-align:center;"><a title="Página oficial de FilmAffinityPlus" href="http://javierarias.wordpress.com/scripts/filmaffinityplus/">FilmAffinityPlus v1.1.0</a></h1>
<p>Aquí está la lista de cambios desde la versión anterior:</p>
<p><strong>versión 1.1.0, 27 de junio de 2008</strong></p>
<ul>
<li>Añadida una barra en la parte superior izquierda de la pantalla, con botones para acceder al panel de configuración, a la web oficial y para añadir FilmAffinity a los motores de búsqueda de Firefox.</li>
<li>Añadida una opción para cambiar el estilo de las estrellas de puntuación: se incluyen dos esquemas, uno de estrellas rojas y otro de estrellas amarillas, además de la posibilidad de dejar las estrellas que vienen por defecto.</li>
<li>Los enlaces a otros sitios web se muestran también en la página de resultados de una búsqueda.</li>
<li>Tras realizar una búsqueda se guarda la opción de búsqueda realizada (ej: una búsqueda por "Reparto" deja seleccionada la opción "Reparto", actualmente tras cualquier tipo de búsqueda la opción seleccionada es siempre "Todas"). Además, tras la búsqueda el cuadro de búsqueda se queda con el foco del teclado.</li>
<li>Arreglada la búsqueda en otros sitios web cuando los títulos contenían caracteres "raros", como tildes o acentos circunflejos (gracias aka_IDIOT).</li>
<li>Se cambia el enlace a la versión inglesa de FilmAffinity para que apunte a la misma página en inglés, actualmente apunta siempre a la página principal (ej: desde la ficha de una película se va a la versión inglesa de la ficha).</li>
<li>Cambiado el antiguo webchat por su nueva versión en flash.</li>
<li>Recuperado el sitio de subtítulos solosubtitulos.com pues parece que vuelve a funcionar.</li>
<li>Añadido un enlace externo al grupo de last.fm que surgió del foro que surgió de FilmAffinity (gracias VicenteJavier).</li>
<li>Se muestra la bandera de cada país en la sección "Mis datos", también en la búsqueda avanzada y en los TOP FilmAffinity.</li>
<li>En la sección "Mis datos" se añade a las estadísticas el número de países diferentes con películas vistas.</li>
<li>Las búsquedas para AllZine (gracias VicenteJavier) y para Cinépatas (gracias pohc) se realizan con el título traducido debido a que la tasa de aciertos es mucho mayor que con el título original.</li>
<li>Añadido el sitio de descargas Vagos.es (gracias Soisa).</li>
<li>Correcciones menores.</li>
</ul>
<p><strong>versión 1.0.1, 14 de mayo de 2008</strong></p>
<ul>
<li>Cambiado ligeramente el CSS del panel de configuración.</li>
<li>Correcciones menores.</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[YouTube download / embed GreaseMonkey script]]></title>
<link>http://spospi.wordpress.com/?p=3</link>
<pubDate>Fri, 27 Jun 2008 09:07:49 +0000</pubDate>
<dc:creator>spospi</dc:creator>
<guid>http://spospi.wordpress.com/?p=3</guid>
<description><![CDATA[If you&#8217;re a cool web user you might be interested in this: I came across a GreaseMonkey script]]></description>
<content:encoded><![CDATA[<p>If you're a cool web user you might be interested in this: I came across a <a title="GreaseMonkey Blog" href="http://www.greasespot.net/">GreaseMonkey</a> script the other day by <a title="greased_google" href="http://www.joshkinberg.com/blog/archives/2005/11/greased_google.php">Josh Kinberg</a> which makes it easy to download YouTube videos.</p>
<p>Pretty awesome but it seems broken now, either with Firefox 3 incompatibilities of some sort or a change to YouTube's page layout (could be both - different rendering sent to the new browser..)</p>
<p>Anyway, I made some minor edits to it to make it compatible with whatever's causing this problem and added a link to the swf url, which you should be able to use if your forum supports (or allows) [flash] tags.</p>
<p><a title="Install" href="http://pospi.spadgos.com/projects/misc/youtube_to_me-fixed.user.js">Install here<br />
</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[7 Essential Greasemonkey Scripts For FriendFeed]]></title>
<link>http://rchitectgroup.wordpress.com/?p=32</link>
<pubDate>Fri, 27 Jun 2008 02:49:09 +0000</pubDate>
<dc:creator>joshking08</dc:creator>
<guid>http://rchitectgroup.wordpress.com/?p=32</guid>
<description><![CDATA[Read more at Mashable.com.
]]></description>
<content:encoded><![CDATA[<p><a href="http://mashable.com/2008/06/26/greasemonkey-friendfeed/" target="_blank">Read more at Mashable.com.</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to Force Yahoo! Fantasy Baseball Links to Open in New Tab]]></title>
<link>http://fochsenhirt.wordpress.com/?p=804</link>
<pubDate>Thu, 26 Jun 2008 16:54:01 +0000</pubDate>
<dc:creator>Fred</dc:creator>
<guid>http://fochsenhirt.wordpress.com/?p=804</guid>
<description><![CDATA[Here&#8217;s a fix for a very small but annoying problem.  If you play Yahoo&#8217;s Fantasy Basebal]]></description>
<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-805" style="margin-left:10px;margin-right:10px;" src="http://fochsenhirt.wordpress.com/files/2008/06/yahoo_baseball.png" alt="" width="192" height="69" />Here's a fix for a very small but annoying problem.  If you play Yahoo's <a href="http://baseball.fantasysports.yahoo.com">Fantasy Baseball</a>, each player name is linked to their Y! Sports profile page.  The little news icons are also linked to this page. These links are done via Javascript with a target of "sports". What this means is that Firefox will open the links in new windows, and not a new tab, which is very annoying.  The only way to fix it via FF preferences is to make all new windows open as tabs, even those that really should be popups (by setting <a href="http://kb.mozillazine.org/Browser.link.open_newwindow.restriction">browser.link.open_newwindow.restriction</a> to 0 in about:config).  There is a better way. First, install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a>, if you haven't already.  Then install this <a href="http://userscripts.org/scripts/show/8282">Yahoo! Fantasy Baseball URL Target Fixer script</a>, which will change all the target="sports" links to target="_blank", which Firefox will open in a new tab.</p>
<p>Now if someone would just write a script to get <a href="http://sports.yahoo.com/mlb/players/6613">Michael Young</a> out of his slump or Rafael Furcal off the DL...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Quickly Switch between Gmail Accounts Google Account Multi Login]]></title>
<link>http://grafikdesign.wordpress.com/2008/06/23/quickly-switch-between-gmail-accounts-google-account-multi-login/</link>
<pubDate>Mon, 23 Jun 2008 21:17:46 +0000</pubDate>
<dc:creator>grafikdesign</dc:creator>
<guid>http://grafikdesign.wordpress.com/2008/06/23/quickly-switch-between-gmail-accounts-google-account-multi-login/</guid>
<description><![CDATA[ Free Greasemonkey user script Google Account Multi-Login adds a simple drop-down menu to Google pag]]></description>
<content:encoded><![CDATA[<p><img style="max-width:800px;float:right;margin-top:10px;margin-bottom:10px;margin-left:10px;" src="http://grafikdesign.files.wordpress.com/2008/06/gmail-account-switch.png" /> Free <b>Greasemonkey </b>user script Google Account Multi-Login adds a simple drop-down menu to Google pages (including Gmail) for quick switching between your different user accounts. Just install the script, reload the page, and you can start adding your Google accounts to the drop-down. It's simple to use and it's a huge timesaver for anyone who actively uses different Google usernames and passwords. It's probably not the most secure place to put your passwords, but if that doesn't bother you, this script may come in very handy. The Google Account Multi-Login script is free, requires Firefox with Greasemonkey.</p>
<p>Founded here <a href="http://lifehacker.com/343881/quickly-switch-google-accounts-with-the-google-account-multi+login" class="top">Quickly Switch Google Accounts with the Google Account Multi-Login</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Plurk Mobile Greasemonkey Script to Display Your Karma And More]]></title>
<link>http://haochen.wordpress.com/?p=45</link>
<pubDate>Sat, 21 Jun 2008 00:08:17 +0000</pubDate>
<dc:creator>Hao Chen</dc:creator>
<guid>http://haochen.wordpress.com/?p=45</guid>
<description><![CDATA[
I use Plurk mobile rather than the regular site on my computer because it&#8217;s cleaner and more ]]></description>
<content:encoded><![CDATA[<p><a href="http://www.plurk.com" target="_blank"><img class="alignnone" src="http://www.plurk.com/static/logo.png" alt="Plurk" /></a></p>
<p>I use <a href="http://www.plurk.com/m/" target="_blank">Plurk mobile</a> rather than the regular site on my computer because it's cleaner and more readable, but it's missing a bunch of features.  I started writing a greasemonkey script to add in some of those missing features.</p>
<p>Version 0.1 displays your karma, karma change, and a "Me" link in the top nav that displays just your own plurks.</p>
<p><strong>Updated</strong> 6/24/08: Version 0.11 adds Emoticons.</p>
<p>You can <a href="http://userscripts.org/scripts/show/28826" target="_blank">download the script from userscripts.org</a>.</p>
<p><a href="http://haochen.wordpress.com/files/2008/06/plurk_mobile_1.jpg?w=600"><img class="alignnone size-medium wp-image-44" src="http://haochen.wordpress.com/files/2008/06/plurk_mobile_1.jpg?w=300" alt="" width="300" height="247" /></a></p>
<p><a href="http://i28.tinypic.com/6xyk4m.jpg" target="_blank"><img class="alignnone" src="http://i28.tinypic.com/6xyk4m.jpg" alt="Plurk Mobile v0.11" width="300" height="196" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[解決：リッチテキストエディタで『y』が打てなくなる。]]></title>
<link>http://takeyourtimeat.wordpress.com/?p=162</link>
<pubDate>Fri, 20 Jun 2008 08:23:07 +0000</pubDate>
<dc:creator>Taka</dc:creator>
<guid>http://takeyourtimeat.wordpress.com/?p=162</guid>
<description><![CDATA[Gmail や WordPress のエディタにはリッチテキストと言う、いわゆる色をつけ]]></description>
<content:encoded><![CDATA[<p>Gmail や WordPress のエディタにはリッチテキストと言う、いわゆる色をつけたり、文字を太くしたり…と言った文章構成を様々な効果と共に利用出来るようになる機能に対応しているのですが、 <strong>Firefox + Greasemonkey</strong> を利用していると、なぜか <strong>Y が打てなくなる奇怪な現象</strong>が起きる可能性があります。今日はその<span style="text-decoration:underline;">解決方法について紹介</span>しようと思います。</p>
<p><!--more--></p>
<p>まず、リッチテキストエディタ内で Y が打てなくなったり、特定のキーが打てなくなった場合は、Greasemonkey の猿マークをクリックし、グレイアウト(猿が灰色っぽくなる；Greasemonkey の利用を一時停止させる)させます。そして、ページを再読み込み <span style="color:#808080;">(F5/Ctrl+R)</span> して再現するか確認します。再現しない場合、Greasemonkey のスクリプトのうち、何かが影響している可能性がある事がわかります。</p>
<p>そして、私的例を取ると、Fast Look up JP and EN がまさにその『影響するスクリプト』だったのです。 Fast Look up JP and EN については別記事を参照頂くとして、このスクリプトを特定の場所(つまり、リッチテキストエディタがあるサイト)に於いて、実行しないようにすれば問題ないのです。その方法は以下の通り。</p>
<ol>
<li>右下(ステータスバー内)にある猿マーク (Greasemonkey のマーク) を右クリックする</li>
<li>『<strong>ユーザースクリプトの管理</strong>』を選択する</li>
<li>左枠から『<strong>Fast Look up JP and EN</strong>』を探し、選択する</li>
<li>右枠の２つ目のボックスにある『<strong>追加</strong>』を押す</li>
<li>特定の場所のURL (例：mail.google.com ) を入力する</li>
</ol>
<p>特定の場所に<span style="text-decoration:underline;">複数ページに同様の症状が起きる可能性がある場合</span>は、サイト毎指定する事が可能。その場合は <strong>*</strong> マークを利用する。例： <strong>*mail.google.com*</strong> とすれば、<a class="linkification-ext" title="http://mail.google.com" href="http://mail.google.com">http://mail.google.com</a>, <a class="linkification-ext" title="https://mail.google.com" href="https://mail.google.com">https://mail.google.com</a>, ...<a class="linkification-ext" title="http://mail.google.com/" href="http://mail.google.com/">mail.google.com/</a>... など様々な Gmail 関連のページに於いて Fast Look up JP and EN の実行を中止する事が出来る。</p>
<h3>ギャラリー</h3>
<p><a href="http://www.picamatic.com/view/480714_WS000000/"><img src="http://www.picamatic.com/show/2008/06/20/12/480714_bigthumb.JPG" border="0" alt="WS000000.JPG - Picamatic - upload your images" width="264" height="185" /></a> <a href="http://www.picamatic.com/view/480723_WS000001/"><img src="http://www.picamatic.com/show/2008/06/20/12/480723_bigthumb.JPG" border="0" alt="WS000001.JPG - Picamatic - upload your images" width="215" height="240" /></a> <a href="http://www.picamatic.com/view/480716_WS000002/"><img src="http://www.picamatic.com/show/2008/06/20/12/480716_bigthumb.JPG" border="0" alt="WS000002.JPG - image uploaded to Picamatic" width="320" height="86" /></a></p>
<ul>
<li><a href="../2008/01/29/fast-look-up-jp-and-en/" target="_blank"><img style="border:medium none;" src="http://favicon.aruko.net/s/f/http://takeyourtimeat.wordpress.com/2008/01/29/fast-look-up-jp-and-en/" alt="" /> 便利なポップアップ辞書「Fast look up JP and EN」 « Sun Flower～報告～</a></li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Javascript Libraries Via Google]]></title>
<link>http://linuxsagas.wordpress.com/?p=86</link>
<pubDate>Thu, 19 Jun 2008 21:43:10 +0000</pubDate>
<dc:creator>digitaleagle</dc:creator>
<guid>http://linuxsagas.wordpress.com/?p=86</guid>
<description><![CDATA[I just found some links about using Javascript hosted by Google:

Google Operating System: Google Ho]]></description>
<content:encoded><![CDATA[<p>I just found some links about using Javascript hosted by Google:</p>
<ul>
<li><a href="http://googlesystem.blogspot.com/2008/05/google-hosts-popular-javascript.html" target="_blank">Google Operating System: Google Hosts Popular Javascript Libraries</a></li>
<li><a href="http://code.google.com/apis/ajaxlibs/" target="_blank">Google Code: AJAX Libraries API</a></li>
</ul>
<p>I had been wanting to use jQuery with GreaseMonkey, but it seems to require that you have a web-accessible copy of jQuery.  I didn't want to use other people's bandwidth but wasn't sure how else to do it.  Here are the instructions:</p>
<ul>
<li><a href="http://www.joanpiedra.com/jquery/greasemonkey/" target="_blank">jQuery &#38; GreaseMonkey</a></li>
</ul>
<p>Hopefully, I can post an example piece of code soon on how to put the two together, but I am not quite there yet.  I hope the links help for now.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Autocomplete]]></title>
<link>http://nahtigal.wordpress.com/?p=96</link>
<pubDate>Wed, 18 Jun 2008 16:46:31 +0000</pubDate>
<dc:creator>nahtigal</dc:creator>
<guid>http://nahtigal.wordpress.com/?p=96</guid>
<description><![CDATA[Іноді розробники сайтів вважають себе розумнішими за ]]></description>
<content:encoded><![CDATA[<p>Іноді розробники сайтів вважають себе розумнішими за користувачів: для деяких полів форм, особливо це стосується логінів/паролей, вони забороняють автозаповнення. Це означає, що для кількох корисних сайтів я мав тримати паролі в голові. <a href="https://addons.mozilla.org/uk/firefox/addon/748">GreaseMonkey</a> та <a href="http://1smash1.livejournal.com/">Смеш</a> все змінили: тепер в мене стоїть <a href="http://userscripts.org/scripts/show/28696">скрипт</a>, який одразу після завантаження сторінки ставить всі параметри autocomplete в "on".</p>
<p>Тепер моє життя на непоганих загалом сервісах <a href="http://portmone.com.ua">Портмоне</a> та <a href="http://del.icio.us">Delicious</a> стало набагато приємніше.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Social bookmarks on hosted wordpress]]></title>
<link>http://osblues.wordpress.com/?p=104</link>
<pubDate>Mon, 16 Jun 2008 21:58:49 +0000</pubDate>
<dc:creator>osblues</dc:creator>
<guid>http://osblues.wordpress.com/?p=104</guid>
<description><![CDATA[Earlier today, I realised I was missing out an all the social media hoohah by not having nice links ]]></description>
<content:encoded><![CDATA[<p>Earlier today, I realised I was missing out an all the social media hoohah by not having nice links at the bottom of my posts.  You know the ones, add to this, post to that, etc.</p>
<p>So, I googled for something to achieve this (on wordpress.com rather than self-hosted) and came across a pretty nifty solution <a href="http://archgfx.net/blog/2006/geek/blogging/social-bookmarks-on-wordpresscom" target="_blank">here</a>.  This involves keeping a template file and fiddling about doing a search and replace in a text editor and pasting the result back in to your post.  You obviously have to remember to do this for each post you write.  Although this is a perfectly good solution, I'm a bit lazy and thought I'd see if I could come up with something a bit quicker.</p>
<p>I decided to see if I could use a <a href="https://addons.mozilla.org/firefox/addon/748" target="_blank">GreaseMonkey</a> script to do it.  After much fiddling, I've come up with this</p>
<p><img class="aligncenter size-full wp-image-106" style="border:1px solid #5581C0;" src="http://osblues.wordpress.com/files/2008/06/wp-social.jpg" alt="Social Bookmarks Preview" width="450" height="139" /></p>
<p>My script inserts an extra section between the post body and the tags section.  When you click the heading it generates a block of HTML using Archgfx's template mentioned earlier.</p>
<p><img class="aligncenter size-full wp-image-108" style="border:1px solid #5581C0;" src="http://osblues.wordpress.com/files/2008/06/wp-social2.jpg" alt="Social Bookmarks in hosted wordpress" width="450" height="255" /></p>
<p>You can then click in the newly inserted textarea, copy the code and paste it in to your post (HTML view, add to the bottom of your post).</p>
<p>This is the first GreaseMonkey script that I've written so it's not going to be that 'elegant', suggestions for improvement are appreciated.</p>
<p>I plan to make improvements to it when I get a chance so keep an eye out here for updates.</p>
<p>You can grab the script <a href="http://www.m69.co.uk/greasemonkey/wordpresssocialbookmarks.user.js" target="_blank">here</a> (you'll obviously need to install GreaseMonkey to use it!)</p>
<p>I'd like to get it to insert the code directly in to the textarea, but my knowledge of hacking tinyMCE is pretty much non-existent.</p>
<p><a title="add to del.icio.us" href="http://del.icio.us/post?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" alt="add to del.icio.us" /></a> :: <a title="add to Technorati" href="http://technorati.com/faves/?add=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://corphacks.files.wordpress.com/2008/03/technorati.gif" alt="Bookmark Post in Technorati" /></a> :: <a title="add to Blinkslist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Description=&#38;Url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;Title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" alt="Add to Blinkslist" /></a> :: <a title="add to Furl" href="http://www.furl.net/storeIt.jsp?u=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;t=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" alt="add to furl" /></a> :: <a title="Digg it" href="http://digg.com/submit?phase=2&#38;url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/"><img src="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" alt="Digg it" /></a> :: <a title="add to ma.gnolia" href="http://ma.gnolia.com/bookmarklet/add?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" alt="add to ma.gnolia" /></a> :: <a title="Stumble it!" href="http://www.stumbleupon.com/submit?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/&#38;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" alt="Stumble It!" /></a> :: <a title="add to Simpy" href="http://www.simpy.com/simpy/LinkAdd.do?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" alt="add to simpy" /></a> :: <a title="seed the vine" href="http://www.newsvine.com/_tools/seed&#38;save?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" alt="seed the vine" /></a> :: <a title="add to Reddit" href="http://reddit.com/submit?url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" alt="" /></a> :: <a title="add to Fark" href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;new_comment=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" alt="" /></a> :: <a title="add to TailRank" href="http://tailrank.com/share/?text=&#38;link_href=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/&#38;title=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" alt="TailRank" /></a> :: <a title="post to FaceBook" href="http://www.facebook.com/sharer.php?u=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/&#38;t=Social+bookmarks+on+hosted+wordpress"><img src="http://sunburntkamel.files.wordpress.com/2008/02/facebookcom.gif" alt="post to facebook" /></a> :: <a title="bookmark on Google" href="http://www.google.com/bookmarks/mark?op=edit&#38;bkmk=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://corphacks.files.wordpress.com/2008/03/google_bmarks.gif" alt="Bookmark on Google" /></a> :: <a title="add to Netscape" href="http://www.netscape.com/submit/?U=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://corphacks.files.wordpress.com/2008/03/netscape.gif" alt="Add to Netscape" /></a> :: <a title="share on Yahoo!" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://corphacks.files.wordpress.com/2008/03/yahoo_myweb.gif" alt="Share on Yahoo" /></a> :: <a title="add this to Live" href="https://favorites.live.com/quickadd.aspx?marklet=1&#38;mkt=en-us&#38;url=http://osblues.com/2008/06/16/social-bookmarks-on-hosted-wordpress/;title=Social+bookmarks+on+hosted+wordpress"><img src="http://corphacks.files.wordpress.com/2008/03/windows_live.gif" alt="Add this to Live" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Plurk personalizado com GreaseMonkey Scripts]]></title>
<link>http://netocury.wordpress.com/2008/06/16/plurk-personalizado-com-greasemonkey-scripts/</link>
<pubDate>Mon, 16 Jun 2008 07:22:44 +0000</pubDate>
<dc:creator>Neto Cury</dc:creator>
<guid>http://netocury.wordpress.com/2008/06/16/plurk-personalizado-com-greasemonkey-scripts/</guid>
<description><![CDATA[Não sabe o que é Plurk??? Venha conhecer o meu Plurk!
Graças ao Deus dos desenvolvedores, outros ]]></description>
<content:encoded><![CDATA[<h3 style="text-align:center;"><span style="color:#0000ff;">Não sabe o que é Plurk??? Venha conhecer o <a href="http://plurk.com/redeemByURL?from_uid=19639&#38;check=1618596036&#38;s=1" target="_blank">meu Plurk</a>!</span></h3>
<p>Graças ao Deus dos desenvolvedores, outros usuários que sabem criar scripts para o Greasemonkey também usam Plurk, então já apareceram alguns interessantes e que já até citei sobre a possibilidade de mudanças no Plurk:</p>
<ul>
<li><a href="http://userscripts.org/scripts/show/28456">Mostrar a postagem completa e não apenas um sumário com três pontinhos;</a></li>
<li><a href="http://userscripts.org/scripts/show/27660">Removedor do Logotipo e Criatura da linha do tempo;</a></li>
<li><a href="http://userscripts.org/scripts/show/27867">Faz a mesma coisa que o de cima, mais a remoção dos aviso sobre updates dos amigos</a> (não gostei)</li>
<li><a href="http://userscripts.org/scripts/show/27835">Adiciona uma aba do Plurk dentro do FriendFeed</a> (sinceramente não vi utilidade de ficar com o FriendFeed aberto)</li>
</ul>
<p>Não se esqueça, para instalar script no <a href="https://addons.mozilla.org/pt-BR/firefox/addon/748">Greasemonkey</a>, você precisa usar o navegador <a href="http://br.mozdev.org">Firefox</a>!</p>
<div class="flockcredit" style="text-align:right;color:#CCC;font-size:x-small;">Blogged with the <a title="Flock Browser" href="http://www.flock.com/blogged-with-flock" target="_new">Flock Browser</a></div>
<p><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/plurk">plurk</a>, <a rel="tag" href="http://technorati.com/tag/firefox">firefox</a>, <a rel="tag" href="http://technorati.com/tag/greasemonkey">greasemonkey</a>, <a rel="tag" href="http://technorati.com/tag/script">script</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Better Gmail 2]]></title>
<link>http://tsirko.wordpress.com/?p=116</link>
<pubDate>Sat, 07 Jun 2008 23:25:09 +0000</pubDate>
<dc:creator>tsirko</dc:creator>
<guid>http://tsirko.wordpress.com/?p=116</guid>
<description><![CDATA[

Το Better Gmail 2 είναι ένα extension του Firefox ( συμβατό και με την]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" style="vertical-align:middle;" src="http://img384.imageshack.us/img384/1567/87656965ji8.jpg" alt="loading" width="410" height="205" /></p>
<p style="text-align:left;">
<p style="text-align:left;">Το Better Gmail 2 είναι ένα extension του Firefox ( συμβατό και με την 3η έκδοση) που επιτρέπει να στους χρήστες να έχουν μια διαφορετική προσέγγιση του gmail λογαριασμού τους! Ουσιαστικά είναι μια συλλογή από scripts του Greasemonkey που έχουν να κάνουν με την gmail που μπορούν να εγκατασταθούν στο Firefox χωρίς το ίδιο το Greasemonkey.</p>
<p style="text-align:left;">Και για να μην πολυλογώ, το Greasemonkey μπορεί να μεταμορφώσει το λογαριασμό σας από κάτι τέτοιο:</p>
<p style="text-align:center;"><a href="http://img80.imageshack.us/my.php?image=gmailbr3.jpg" target="_blank"><img class="aligncenter" src="http://img80.imageshack.us/img80/2928/gmailbr3.th.jpg" border="0" alt="Free Image Hosting at www.ImageShack.us" /></a></p>
<p>σε κάτι τέτοιο:</p>
<p style="text-align:center;"><a href="http://img93.imageshack.us/my.php?image=untitle2d1hn5.jpg" target="_blank"><img class="aligncenter" src="http://img93.imageshack.us/img93/1943/untitle2d1hn5.th.jpg" border="0" alt="Free Image Hosting at www.ImageShack.us" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How To Change Facebook's Background?]]></title>
<link>http://techidea.wordpress.com/?p=113</link>
<pubDate>Thu, 05 Jun 2008 18:57:31 +0000</pubDate>
<dc:creator>TECH IDEA</dc:creator>
<guid>http://techidea.wordpress.com/?p=113</guid>
<description><![CDATA[Question: How To Change Facebook&#8217;s Background?
Answer: Yes, it&#8217;s possible and simple tri]]></description>
<content:encoded><![CDATA[<blockquote><p><strong>Question: </strong>How To Change Facebook's Background?</p></blockquote>
<blockquote><p><strong>Answer:</strong> Yes, it's possible and simple tricks.  Instructions are given below:</p>
<p><a href="http://techidea.wordpress.com/files/2008/06/facebook_background_changed.png"><img class="alignright alignnone size-thumbnail wp-image-111" style="float:right;" src="http://techidea.wordpress.com/files/2008/06/facebook_background_changed.png?w=203" alt="" width="203" height="189" /></a></p>
<ol>
<li>You have to use Mozilla Browser. Otherwise, you can't.</li>
<li>Install <a href="http://userscripts.org/scripts/show/3626" target="_self">Greasemonkey add-ons for Mozilla Browser</a>.</li>
<li>Restart your browser and <a href="http://userscripts.org/scripts/show/3626" target="_self">Facebook Auto Colorizer Script</a> will start to work for you and help you to change the color scheme of your facebook profiles.</li>
<li>Now you can manage your desired/favorites colors.</li>
<li>Be updated about this add-ons and always use the latest version of Facebook Auto Colorizer Add-ons</li>
</ol>
<p>Disadvantages: This will not work on Internet Explorer Browser and it's only working fine on Mozilla Firefox Browser. And Mozilla Firefox capable to install this scripts.<a href="http://techidea.wordpress.com/files/2008/06/facebook_background_changed.png"><br />
</a></p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Duncan, Thanks for Putting Plurk in FriendFeed]]></title>
<link>http://wolfsbayne.wordpress.com/?p=38</link>
<pubDate>Thu, 05 Jun 2008 09:09:26 +0000</pubDate>
<dc:creator>wolfsbayne</dc:creator>
<guid>http://wolfsbayne.wordpress.com/?p=38</guid>
<description><![CDATA[Duncan Riley, editor at The Inquisitr, posted a new GreaseMonkey script for Firefox. This script add]]></description>
<content:encoded><![CDATA[<p>Duncan Riley, editor at <a href="http://www.inquisitr.com/about">The Inquisitr</a>, posted a new <a title="GreaseMonkey" href="https://addons.mozilla.org/en-US/firefox/addon/748">GreaseMonkey</a> script for Firefox. This script adds a <a href="http://plurk.com">Plurk</a> tab in <a href="http://friendfeed.com">FriendFeed</a> as shown by the attached screenshot.</p>
<p style="text-align:center;"><a href="http://wolfsbayne.files.wordpress.com/2008/06/plurk_ff_gm2.jpg"><img class="aligncenter size-full wp-image-41" src="http://wolfsbayne.wordpress.com/files/2008/06/plurk_ff_gm2.jpg" alt="Plurk in FriendFeed" width="468" height="210" /></a></p>
<p style="text-align:left;">I'm sure this will give some ppl some ideas about how to integrate other apps into the interface at <a href="http://friendfeed.com">FriendFeed</a>.</p>
<p style="text-align:left;">Thanks for opening up some ideas, Duncan. Good job!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Redbox Greasemonkey Script Adds Movie Rating, Ranking, and Quantity Left]]></title>
<link>http://haochen.wordpress.com/?p=32</link>
<pubDate>Wed, 04 Jun 2008 08:36:01 +0000</pubDate>
<dc:creator>Hao Chen</dc:creator>
<guid>http://haochen.wordpress.com/?p=32</guid>
<description><![CDATA[
I updated my Redbox greasemonkey script tonight with a fix, so it works again.  In addition to addi]]></description>
<content:encoded><![CDATA[<p><a href="http://www.redbox.com/" target="_blank"><img class="alignnone" src="http://www.stopandshop.com/images/stores/redbox_logo_79.gif" alt="Redbox" /></a></p>
<p>I updated my <a href="http://www.redbox.com/" target="_blank">Redbox</a> greasemonkey script tonight with a fix, so it works again.  In addition to adding the movies' Yahoo ranking, I've also added its movie rating (G, PG, PG-13, R, etc) and quantity of DVDs left for each movie.  Just make sure you select your location/kiosk for the Qty to show up.</p>
<p>Here's a <a href="http://i31.tinypic.com/2j0cpae.jpg" target="_blank">screenshot</a> of the mod.</p>
<p><a href="http://i31.tinypic.com/2j0cpae.jpg" target="_blank"><img class="alignnone" src="http://i31.tinypic.com/2j0cpae.jpg" alt="Redbox Greasemonkey Mod" width="561" height="427" /></a></p>
<p>You can <a href="http://userscripts.org/scripts/show/21810" target="_blank">install the script from userscripts.org</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Coisas técnicas e afins]]></title>
<link>http://cristinar.wordpress.com/2008/06/03/coisas-tecnicas-e-afins/</link>
<pubDate>Tue, 03 Jun 2008 18:08:43 +0000</pubDate>
<dc:creator>cristinar</dc:creator>
<guid>http://cristinar.wordpress.com/2008/06/03/coisas-tecnicas-e-afins/</guid>
<description><![CDATA[Acho que tentei por o del.icio.us a publicar aqui o rol diário de bookmarks. Sim, sim, digo acho qu]]></description>
<content:encoded><![CDATA[<p>Acho que tentei por o del.icio.us a publicar aqui o rol diário de bookmarks. Sim, sim, digo acho que tentei, não que acho que pus. Vamos a ver se não me enganei a preencher nenhum dos campos do "thingy" ;) </p>
<p>Ando a experimentar o Greasemonkey, add-on do Firefox, e alguns dos scripts que achei interessantes e que estão disponíveis para o FF3. Vamos a ver no que isto dá. Para já, <a href="http://userscripts.org/scripts/show/1060" target="_blank">o script que faz o cálculo da idade e signos da malta</a> na imdb funciona bem e é muita giro, pá!!!1</p>
<p>Criei nova conta no Flickr (e nova conta no Yahoo, caneco, que exigências) para ver se separo as minhas fotos turísticas das "outras". Não sei bem porquê, nunca cumpro a promessa feita a mim mesma de ir por aí fora a tirar fotografias... Pode ser que agora com o Verão a chegar a sério...</p>
<p>E de resto, nada de especial. Muitas ganas de aumentar a RAM do portátil, muito vício de deitar o olho ao indicador de CPU na barra de tarefas, muito feed lido só por alto no Bloglines (viva o S! viva o F! viva o mark all read!), alguma tristeza com as lentidões do Twitter...</p>
<p><!-- Site Meter --><a href="http://s27.sitemeter.com/stats.asp?site=s27crabbyblue" target="_top"><img style="display:none;" src="http://s27.sitemeter.com/meter.asp?site=s27crabbyblue" alt="Site Meter" border="0" /></a><!-- Copyright (c)2006 Site Meter --></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Quick Tip - Increase Those Analytics Skills]]></title>
<link>http://seoblitz.wordpress.com/?p=16</link>
<pubDate>Mon, 02 Jun 2008 01:42:42 +0000</pubDate>
<dc:creator>alphaarx</dc:creator>
<guid>http://seoblitz.wordpress.com/?p=16</guid>
<description><![CDATA[I&#8217;ve recently been cramming in as much analytics knowledge as I can.  Analytics is a huge part]]></description>
<content:encoded><![CDATA[<p>I've recently been cramming in as much analytics knowledge as I can.  Analytics is a huge part of the SEO game as you need to be able to analyze which of your strategies are working and which are not.  Here is a couple things i've started utilizing that might help you as well -</p>
<p>1.  Get into Google Analytics stat.  This is the best program I have encountered so far and it's totally free.  Getting up and running is pretty easy and the results are great.</p>
<p>2.  Use Filters.  Google allows you to exclude or include traffic from sites listed in your analytics, allowing you to see as much or as little from each source as you want.  Use this to eliminate seeing 100% bounce traffic, or to watch a particular external source very carefully.</p>
<p>3.  Check out <a href="http://www.juiceanalytics.com/writing/enhancing-google-analytics-using-greasemonkey/">Greasemonkey's application</a> for analytics enhancement.  It has really helped me assess different trends in regards to external sources driving traffic into the site.</p>
<p>4.  Use the Site Overlay feature.  It's really nice seeing what gets hit, how much it gets hit, and what percentage of traffic it is receiving.</p>
<p>Of course there is a ton of useful things you can do with Google Analytics, but that's not really my point.  I just want to be a cheerleader for it and let you know that it is definitely worth the time to investigate and learn in this SEO biz.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Remove Dupes from Google Reader using Greasemonkey]]></title>
<link>http://haochen.wordpress.com/?p=31</link>
<pubDate>Fri, 30 May 2008 19:32:05 +0000</pubDate>
<dc:creator>Hao Chen</dc:creator>
<guid>http://haochen.wordpress.com/?p=31</guid>
<description><![CDATA[

I find it annoying to see the same stories duplicated in my Google Reader, especially now that I s]]></description>
<content:encoded><![CDATA[<p><a href="http://www.google.com/reader" target="_blank"><img class="alignnone" src="http://www.google.com/reader/ui/2426084610-reader-logo-en.gif" alt="Google Reader" /></a></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank"><img class="alignnone" src="http://www.lifehack.org/wp-content/files/2007/03/03202007-logo.gif" alt="Greasemonkey" width="115" height="115" /></a></p>
<p>I find it annoying to see the same stories duplicated in my Google Reader, especially now that I subscribe to many popular/recommended feeds (<a href="http://www.rssmeme.com/" target="_blank">RSSmeme</a>, <a href="http://del.icio.us/popular/" target="_blank">del.icio.us</a>, <a href="http://www.twitbuzz.com/" target="_blank">TwitBuzz</a>, <a href="http://twitturly.com/" target="_blank">Twitt(url)y</a>, <a href="http://www.readburner.com/" target="_blank">ReadBurner</a>, <a href="http://news.ycombinator.com/" target="_blank">Hacker News</a>) along with my regular feeds.</p>
<p>So, I started a <a href="http://userscripts.org/scripts/show/22507" target="_blank">Remove Dupes from Google Reader</a> greasemonkey script back in February. <a href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">Greasemonkey</a> is a <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a> addon that allows  you to customize the way a webpage displays using small bits of JavaScript.</p>
<p>I just updated it to version 0.2 today with a couple of changes:</p>
<ul>
<li>moved Remove Dupes button next to the Refresh button</li>
<li>dupes: mark as read, but no longer hides them (fix keyboard j,k bug)</li>
<li>finds more dupes by splitting symbols (-, &#124;) this is really helpful if you subscribe to Twitt(url)y</li>
<li>more helpful firebug console output (ie. # dupes removed)</li>
</ul>
<p>You can <a href="http://userscripts.org/scripts/show/22507" target="_blank">install this script</a> from userscripts.org.</p>
<p>My other greasemonkey script is for <a href="http://userscripts.org/scripts/show/21810" target="_blank">adding ratings to the RedBox website</a>.</p>
<p>Let me know what you think!</p>
]]></content:encoded>
</item>

</channel>
</rss>
