<?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>Less Talk, More Do &#187; YouTube Comment Snob</title>
	<atom:link href="http://www.chrisfinke.com/category/youtube-comment-snob/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrisfinke.com</link>
	<description>Christopher Finke is a software engineer who builds high-traffic websites (like AOL Shopping and Mahalo.com) and develops browser add-ons (like ScribeFire, TwitterBar, FireFound, and Tapsure) to enhance the Web.</description>
	<lastBuildDate>Mon, 06 Feb 2012 21:34:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Announcing Typo.js: Client-side JavaScript Spellchecking</title>
		<link>http://www.chrisfinke.com/2011/03/31/announcing-typo-js-client-side-javascript-spellchecking/</link>
		<comments>http://www.chrisfinke.com/2011/03/31/announcing-typo-js-client-side-javascript-spellchecking/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 13:00:52 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[Comment Snob]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/?p=1978</guid>
		<description><![CDATA[In which I spend lots of time on something that will eventually be made obsolete by a Chrome extension API.]]></description>
			<content:encoded><![CDATA[<p>When I first ported <a href="/addons/youtube-comment-snob">YouTube Comment Snob</a> to Chrome, Chrome&#8217;s lack of a spellchecking API for extensions meant that I would be unable to implement Comment Snob&#8217;s most popular and distinguishing feature: the ability to filter out comments based on spelling mistakes.  That, my friend, is about to change.</p>
<p>I&#8217;ve finished work on the first version of a client-side spellchecker written entirely in JavaScript, and I&#8217;m calling it <a href="https://github.com/cfinke/Typo.js">Typo.js</a>. Its express purpose is to allow Chrome extensions to perform spellchecking, although there&#8217;s no reason it wouldn&#8217;t work in other JavaScript environments. (Don&#8217;t use it for Firefox extensions though; use <a href="https://developer.mozilla.org/en/Using_spell_checking_in_XUL">Firefox&#8217;s native spellchecking API.</a>)</p>
<h2>How does it work?</h2>
<p>Typo.js uses <a href="http://hunspell.sourceforge.net/">Hunspell</a>-style dictionaries &#8211; the same ones used in the spellcheckers of OpenOffice.org and Firefox.  (Typo.js ships with the latest American English dictionary, but you could add any number of other dictionary files to it yourself.)  You initialize a Typo.js instance in one of two ways:</p>
<h3>Method #1</h3>
<pre>
var dictionary = new Typo("en_US");
</pre>
<p>This tells Typo.js to load the dictionary represented by two files in the <code>dictionaries/en_US/</code> directory: en_US.aff and en_US.dic.  The .aff file is an affix file: a list of rules for creating multiple forms of a word by adding prefixes and suffixes. The .dic file is the dictionary file: a list of root words and the affix rules that apply to them.  Typo parses these files and generates a complete dictionary by applying the applicable affix rules to the list of root words.</p>
<h3>Method #2</h3>
<pre>
var dictionary = new Typo("en_US", affData, dicData);
</pre>
<p>With this initialization method, you supply the data from the affix and dictionary files.  This method is preferable if you wish to change the location of the affix and dictionary files or if you are using Typo.js in an environment other than a Chrome extension, such as in a webpage or in a server-side JavaScript environment.</p>
<p>Once you&#8217;ve initialized a Typo instance, you can use it to check whether a word is misspelled:</p>
<pre>
var is_correct_spelling = dictionary.check("mispelled");
</pre>
<h2>Customization</h2>
<p>Depending on your needs, you can configure Typo.js to perform word lookups in one of two ways:</p>
<ol>
<li>hash: Stores the dictionary words as the keys of a hash and does a key existence check to determine whether a word is spelled correctly. Lookups are very fast, but this method uses more memory.</li>
<li>binary search: Concatenates dictionary words of identical length into sets of long strings and uses binary search in these strings to check whether a word exists in the dictionary. It uses less memory than the hash implementation, but lookups are slower.</li>
</ol>
<p>See <a href="http://ejohn.org/blog/revised-javascript-dictionary-search/">this blog post by John Resig</a> for a more detailed exploration of possible dictionary representations in JavaScript.</p>
<h2>Practice vs. Theory</h2>
<p>Typo.js is already in use in my <a href="https://chrome.google.com/webstore/detail/gfbnmebccmipejnnlcaenkhfhniaielg">Comment Snob</a> extension.  You can install it today to experience Typo.js in action, filtering comments on YouTube based on the number of spelling mistakes in each one.</p>
<h2>What&#8217;s next for Typo.js?</h2>
<p>The next step is adding support for returning spelling suggestions; right now, all Typo.js can do is tell you whether a word is spelled correctly or not. It also needs to support Hunspell&#8217;s compound word rules.  These are the rules that a spellchecker uses to determine whether words like &#8220;100th&#8221;, &#8220;101st&#8221;, &#8220;102th&#8221; are correct spellings (yes, yes, and no, for those of you keeping track) since it would be impossible to precompute a list of all possible words of these forms.</p>
<p>The Typo.js code is available on <a href="https://github.com/cfinke/Typo.js">GitHub</a>. I welcome any and all suggestions or code contributions.</p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1978" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2011/03/31/announcing-typo-js-client-side-javascript-spellchecking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>YouTube Comment Snob is now Comment Snob</title>
		<link>http://www.chrisfinke.com/2011/03/18/youtube-comment-snob-is-now-comment-snob/</link>
		<comments>http://www.chrisfinke.com/2011/03/18/youtube-comment-snob-is-now-comment-snob/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 13:00:05 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[Comment Snob]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/?p=1943</guid>
		<description><![CDATA[In which I write a Brita filter for the Web.]]></description>
			<content:encoded><![CDATA[<p>In 2007, I wrote a Firefox add-on called <a href="http://www.chrisfinke.com/2007/08/28/filter-youtube-comments-by-spelling-mistakes/">YouTube Comment Snob</a>.  Its main function was to filter out the inanity from YouTube comment threads, and it worked (and still works) very well, but the comment I heard most frequently from people who tried it out was &#8220;Can you make this for the entire Web?&#8221;  Until now, my answer has been, &#8220;No, not yet.&#8221; But now, my answer is &#8220;Very yes.&#8221;</p>
<h3>Announcing Comment Snob</h3>
<p>Comment Snob is an extension for Google Chrome that filters out undesirable comments from comment threads all over the Web.</p>
<table style="width: 100%;">
<tr>
<td style="width: 50%;">Before:</td>
<td>After:</td>
</tr>
<tr>
<td><img src="/comment-snob/youtube-before.png" /></td>
<td><img src="/comment-snob/youtube-after.png" /></td>
</tr>
</table>
<p>You can <a href="https://chrome.google.com/webstore/detail/gfbnmebccmipejnnlcaenkhfhniaielg">install it here</a>.  It still comes with support for YouTube built in, but you can add support for many other sites by installing Comment Snob rules. </p>
<h3>What are Comment Snob Rules?</h3>
<p>Comment Snob rules are JSON objects that dictate how Comment Snob finds and filters comments on different websites. Here&#8217;s the rule for YouTube that ships with Comment Snob:</p>
<pre>{
	"id": "youtube@chrisfinke.com",
	"label": "YouTube",
	"url": "^http://www\\.youtube\\.com/.*$",
	"allCommentsSelector": "#comments-view",
	"commentContainerSelector": "li.comment",
	"commentTextSelector": "div.comment-text",
	"commentHideSelector": "> div",
	"statusElementTag": "div",
	"statusElementAttributes": {
		"class": "content",
		"style": "color: #666;"
	},
	"ajaxInitiatorSelector": ".comments-pagination button, .comments-pagination a, .comments-pagination button > span",
	"updateURL": "http://www.chrisfinke.com/comment-snob/rules/youtube.snob"
}</pre>
<p>If you know HTML and understand how to use jQuery, you can write rules for Comment Snob.  (Full instructions for writing rules are available <a href="/comment-snob#howto">here</a>.)</p>
<p>For each rule that you install, you can choose a unique set of filtering rules:</p>
<p><img src="http://www.chrisfinke.com/files/2011/03/preferences.png" alt="" title="preferences" width="600" height="280" class="alignnone size-full wp-image-1959" /></p>
<h3>Where Can I Install Rules?</h3>
<p>I&#8217;ve written eight rules myself and made them available on <a href="/comment-snob">this page</a> (scroll down to &#8220;Featured Comment Snob Rules&#8221;); as other people write rules, I&#8217;ll link to them from that page as well. Eventually, I&#8217;ll have a proper site put together for showcasing the most popular rules.</p>
<h3>Where Can I Install It?</h3>
<p>Install it from the <a href="https://chrome.google.com/extensions/detail/gfbnmebccmipejnnlcaenkhfhniaielg">Google Chrome Extensions Gallery</a>. It&#8217;s not available for Firefox yet, but I&#8217;ll most likely be releasing the next version for Chrome and Firefox simultaneously.</p>
<h3>What&#8217;s Next?</h3>
<p>This version of Comment Snob is just a shell of what my final vision is for comment filtering on the Web; right now, it&#8217;s all very manual, and the chances of false positives are too high for my taste.  Adding a proper spellcheck filter will help that somewhat (Chrome doesn&#8217;t yet have a spellcheck API like Firefox does), but imagine a future where all comments on all websites could be filtered automatically based on their content, grammar, and keyword frequency, without having to account for personality differences between different websites. (e.g., The expected quality of a YouTube comment is much lower than the expected quality of a Hacker News comment, so Hacker News comments should be judged more stringently.) That starts to get close to what I want Comment Snob to be.</p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1943" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2011/03/18/youtube-comment-snob-is-now-comment-snob/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Comment Snob in the news</title>
		<link>http://www.chrisfinke.com/2010/06/11/youtube-comment-snob-in-the-news/</link>
		<comments>http://www.chrisfinke.com/2010/06/11/youtube-comment-snob-in-the-news/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 03:02:55 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/?p=1692</guid>
		<description><![CDATA[YouTube Comment Snob got some press from the BBC&#8217;s Webscape segment; the coverage starts around the three-minute mark, right after a very complimentary bit on Jay Meattle&#8217;s Shareaholic.]]></description>
			<content:encoded><![CDATA[<p><a href="/addons/youtube-comment-snob/">YouTube Comment Snob</a> got some press from <a href="http://news.bbc.co.uk/2/hi/programmes/click_online/8717764.stm">the BBC&#8217;s Webscape segment</a>; the coverage starts around the three-minute mark, right after a very complimentary bit on <a href="http://www.shareaholic.com/">Jay Meattle&#8217;s Shareaholic</a>.</p>
<p><embed width="448" height="287" allowfullscreen="true" allowscriptaccess="always" wmode="default" quality="high" flashvars="embedReferer=&amp;embedPageUrl=http%3A%2F%2Fnews.bbc.co.uk%2F2%2Fhi%2Fprogrammes%2Fclick_online%2F8717764.stm&amp;widgetRevision=20677_20946&amp;legacyPlayerRevision=20573_20923&amp;config_settings_language=default&amp;config_settings_showShareButton=false&amp;companionSize=300x60&amp;companionType=adi&amp;preroll=http%3A%2F%2Fad.doubleclick.net%2Fpfadx%2Fbbccom.live.site.news%2Fnews_clickonline_content%3Bsectn%3Dnews%3Bctype%3Dcontent%3Bnews%3Dclick%3Badsense_middle%3Dadsense_middle%3Badsense_mpu%3Dadsense_mpu%3Breferrer%3Dnonbbc%3Breferrer_domain%3D%3Brsi%3DJ08781_10139%3Brsi%3DJ08781_10168%3Bslug%3Dclick%3Bheadline%3Dwebscape-visualsearchesonthemobilephone%3Bslot%3Dcompanion%3Bsz%3D512x288%3Btile%3D5&amp;config=http%3A%2F%2Fnews.bbc.co.uk%2Fplayer%2Femp%2Fconfig%2Fdefault.xml%3F2_26_20946_20100610111019&amp;domId=emp_8723291&amp;playlist=http%3A%2F%2Fnews.bbc.co.uk%2Fmedia%2Femp%2F8720000%2F8723200%2F8723291.xml&amp;holding=http%3A%2F%2Fnewsimg.bbc.co.uk%2Fmedia%2Fimages%2F47999000%2Fjpg%2F_47999214_webscape-526_512.jpg&amp;config_settings_autoPlay=false&amp;config_settings_showPopoutButton=false&amp;autoPlay=false&amp;config_plugin_fmtjLiveStats_pageType=eav2&amp;config_plugin_fmtjLiveStats_edition=International&amp;fmtjDocURI=%2F2%2Fhi%2Fprogrammes%2Fclick_online%2F8717764.stm&amp;companionId=bbccom_companion_8723291&amp;config_settings_showUpdatedInFooter=true" id="embeddedPlayer_8723291" src="http://newsimg.bbc.co.uk/player/emp/2_26_20946/widgets/10shell.swf?revision=20959" type="application/x-shockwave-flash"/></p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1692" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2010/06/11/youtube-comment-snob-in-the-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Four More Fennec Add-ons</title>
		<link>http://www.chrisfinke.com/2008/11/06/four-more-fennec-add-ons/</link>
		<comments>http://www.chrisfinke.com/2008/11/06/four-more-fennec-add-ons/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 01:49:34 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[AutoAuth]]></category>
		<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Mozilla Add-ons]]></category>
		<category><![CDATA[Mozilla Fennec]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Slashdotter]]></category>
		<category><![CDATA[TwitterBar]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/?p=1015</guid>
		<description><![CDATA[This is a Fennec fox. I got some great feedback after I updated URL Fixer to be compatible with Fennec, Mozilla&#8217;s mobile browser, and I&#8217;m happy to announce that I&#8217;ve been able to add Fennec compatibility to four more add-ons: TwitterBar: Post to Twitter from Firefox&#8217;s address bar AutoAuth: Automatically submits authentication dialogs YouTube Comment [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/floridapfe/1577506262/"><img src="http://farm3.static.flickr.com/2082/1577506262_03177b0e0f.jpg" alt="Picture of a Fennec fox." /></a><br /><i>This is a Fennec fox.</i></p>
<p>I got some great feedback after I <a href="http://www.chrisfinke.com/2008/10/29/url-fixer-now-compatible-with-fennec-mobile-firefox/">updated URL Fixer</a> to be compatible with <a href="https://wiki.mozilla.org/Mobile/Fennec">Fennec, Mozilla&#8217;s mobile browser</a>, and I&#8217;m happy to announce that I&#8217;ve been able to add Fennec compatibility to four more add-ons:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4664/">TwitterBar</a>: Post to Twitter from Firefox&#8217;s address bar</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/4949/">AutoAuth</a>: Automatically submits authentication dialogs</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/7115/">YouTube Comment Snob</a> (still in the sandbox): Filter out lame comments on YouTube</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2175/">Slashdotter</a> (still in the sandbox): Adds features to the <a href="http://slashdot.org/">Slashdot</a> website</li>
</ul>
<p>So far, I&#8217;ve found it pretty easy to port add-ons to Fennec, with the following caveats:</p>
<ul>
<li>You can&#8217;t install add-ons in Fennec by opening them from your computer; I wrote a script to copy the add-on directly into the Fennec profile, much like an add-on IV drip &#8211; straight into the bloodstream!</li>
<li>There&#8217;s no easy access to the error console , but you can open it manually if you grab the <a href="chrome://global/content/console.xul">address</a> from Firefox.</li>
<li>No DOM Inspector.  For now, just browse <a href="http://hg.mozilla.org/mobile-browser/file/3d4513d61c4b/chrome/content/">the source</a>.</li>
</ul>
<p>It seems that all of these issues could be solved with a &#8220;Fennec Add-on Development&#8221; extension; maybe that will be my next project, unless easier solutions already exist. </p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1015" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2008/11/06/four-more-fennec-add-ons/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>YouTube Comment Snob updated</title>
		<link>http://www.chrisfinke.com/2008/04/26/youtube-comment-snob-updated/</link>
		<comments>http://www.chrisfinke.com/2008/04/26/youtube-comment-snob-updated/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 01:01:11 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/?p=725</guid>
		<description><![CDATA[YouTube Comment Snob is an extension for the Firefox Web browser that allows you to filter YouTube comments based on spelling, capitalization, and punctuation usage. I&#8217;ve updated YouTube Comment Snob to work with YouTube&#8217;s latest redesign, as well as to add compatibility for Firefox 3. It&#8217;s available for download from the Mozilla Add-ons sandbox until [...]]]></description>
			<content:encoded><![CDATA[<p class="key-point">YouTube Comment Snob is an extension for the Firefox Web browser that allows you to filter YouTube comments based on spelling, capitalization, and punctuation usage.</p>
<p>I&#8217;ve updated <a href="http://www.chrisfinke.com/addons/youtube-comment-snob/">YouTube Comment Snob</a> to work with YouTube&#8217;s latest redesign, as well as to add compatibility for Firefox 3.  It&#8217;s available for download from the <a href="https://addons.mozilla.org/en-US/firefox/addon/7115">Mozilla Add-ons sandbox</a> until it is approved by an <abbr title="addons.mozilla.org">AMO</abbr> editor for mass consumption.</p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=725" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2008/04/26/youtube-comment-snob-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter YouTube comments by spelling mistakes</title>
		<link>http://www.chrisfinke.com/2007/08/28/filter-youtube-comments-by-spelling-mistakes/</link>
		<comments>http://www.chrisfinke.com/2007/08/28/filter-youtube-comments-by-spelling-mistakes/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 12:29:05 +0000</pubDate>
		<dc:creator>Christopher Finke</dc:creator>
				<category><![CDATA[Browser Add-ons]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[YouTube Comment Snob]]></category>

		<guid isPermaLink="false">http://www.chrisfinke.com/2007/08/28/filter-youtube-comments-by-spelling-mistakes/</guid>
		<description><![CDATA[I&#8217;m sure that I&#8217;m not the only one who has noticed that the discussion threads at YouTube typically contain a low percentage of quality comments. Earlier this week, I remarked to a co-worker that it wouldn&#8217;t be a bad idea to be able to filter the comments based on the number of spelling mistakes made [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure that I&#8217;m not the only one who has noticed that the discussion threads at YouTube typically contain a low percentage of quality comments.  Earlier this week, I remarked to a co-worker that it wouldn&#8217;t be a bad idea to be able to filter the comments based on the number of spelling mistakes made by the author.  Inspired by that thought, I&#8217;ve written a Firefox extension that makes that kind of filtering possible.</p>
<p>With the <a href="http://www.efinke.com/addons/youtube-comment-snob/">YouTube Comment Snob Firefox extension</a>, you can hide comments that meet any of these criteria:</p>
<ul>
<li>More than # spelling mistakes: The number of mistakes is customizable, and the extension uses Firefox&#8217;s built-in spell checker.</li>
<li>All capital letters</li>
<li>No capital letters</li>
<li>Doesn&#8217;t start with a capital letter</li>
<li>Excessive punctuation (!!!! ????)</li>
<li>Excessive capitalization</li>
</ul>
<p>For example, here&#8217;s part of a typical YouTube comment thread:</p>
<p><img src='http://www.chrisfinke.com/files/2007/08/youtube-comments.png' alt='YouTube Comments' /></p>
<p>And here&#8217;s how that same section looks when using YouTube Comment Snob:</p>
<p><img src='http://www.chrisfinke.com/files/2007/08/yt-comment-snob.png' alt='Example of YouTube Comment Snob’s work' /></p>
<p>(You&#8217;ll notice how foreign languages are categorized as spelling mistakes; if you speak a different language and have that dictionary installed for Firefox&#8217;s spellchecker, you can choose to have YouTube Comment Snob use that dictionary instead.)</p>
<p>You can <b><a href="http://www.efinke.com/addons/youtube-comment-snob/">install YouTube Comment Snob from its homepage</a></b>.  It is compatible with Firefox 1.5 through 3.0a7, Netscape Navigator 9, and Flock.</p>
 <img src="http://www.chrisfinke.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=451" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://www.chrisfinke.com/2007/08/28/filter-youtube-comments-by-spelling-mistakes/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

