<?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>ByteStork blog &#187; GreaseMonkey</title>
	<atom:link href="http://blog.bytestork.com/category/javascript/greasemonkey/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bytestork.com</link>
	<description>Evolving the web</description>
	<lastBuildDate>Mon, 22 Nov 2010 10:18:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Fixing usability with GreaseMonkey</title>
		<link>http://blog.bytestork.com/2010/06/11/fixing-usability-with-greasemonkey/</link>
		<comments>http://blog.bytestork.com/2010/06/11/fixing-usability-with-greasemonkey/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 08:25:56 +0000</pubDate>
		<dc:creator>Børge Antonsen</dc:creator>
				<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://blog.bytestork.com/?p=28</guid>
		<description><![CDATA[Sometimes there are annoying small usability issues, like on cds.cern.ch, where the standard option is to select ALL categories when you search. Usually I know what I want to search for, and there&#8217;s a big difference in searching for books and multimedia, which means I don&#8217;t want to have books popping up if I want [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes there are annoying small usability issues, like on <a href="http://cds.cern.ch">cds.cern.ch</a>, where the standard option is to select ALL categories when you search.</p>
<p>Usually I know what I want to search for, and there&#8217;s a big difference in searching for books and multimedia, which means I don&#8217;t want to have books popping up if I want a picture.</p>
<p>Luckily a simple GreaseMonkey fix can solve such annoyances with no effort at all:</p>
<pre class="brush:js">var inputFields = document.getElementsByTagName("input");
for(key in inputFields)
{
  if(inputFields[key].type == "checkbox" &amp;&amp; inputFields[key].checked == true)
    inputFields[key].checked = false;
}
</pre>
<p>Now I just select what I want, instead of deselecting what I don&#8217;t want, which usually leads to a lot less clicking.</p>
<p>Thank you <a href="https://addons.mozilla.org/en-US/firefox/addon/748/">GreaseMonkey</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bytestork.com/2010/06/11/fixing-usability-with-greasemonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

