<?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>Tech[niques] &#187; firefox</title>
	<atom:link href="http://tech.niques.info/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.niques.info</link>
	<description>Technology applied to modern life</description>
	<lastBuildDate>Mon, 14 Jun 2010 11:27:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Creating Your Own Firefox Search Plugin in 5 Minutes or Less!</title>
		<link>http://tech.niques.info/diy-firefox-opensearch-plugin/</link>
		<comments>http://tech.niques.info/diy-firefox-opensearch-plugin/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 11:00:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[opensearch]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://tech.niques.info/diy-firefox-opensearch-plugin/</guid>
		<description><![CDATA[Ever wished Firefox's search box supported your favourite site, but it didn't recognise it?  Find out how to DIY a search plugin in less than 5 minutes!]]></description>
			<content:encoded><![CDATA[Copyright © 2012 <a href="http://tech.niques.info">Tech[niques]</a>. Visit the original article at <a href="http://tech.niques.info/diy-firefox-opensearch-plugin/">http://tech.niques.info/diy-firefox-opensearch-plugin/</a>.<br /><div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:14f59fb1-89c5-46ea-ae2f-a6e111980205" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/diy" rel="tag">diy</a>,<a href="http://technorati.com/tags/firefox" rel="tag">firefox</a>,<a href="http://technorati.com/tags/opensearch" rel="tag">opensearch</a>,<a href="http://technorati.com/tags/search" rel="tag">search</a></div>
<p><a href="http://tech.niques.info/wp-content/uploads/2008/02/diy-firefox-search-plugin.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="31" alt="diy-firefox-search-plugin" src="http://tech.niques.info/wp-content/uploads/2008/02/diy-firefox-search-plugin-thumb.png" width="248" align="right" border="0" /></a> As an avid Firefox user I rely on its inbuilt search box to help me navigate the web.&#160; One of its best features is its ability to add support additional websites you are interested in.&#160; The <a title="Mycroft project" href="http://mycroft.mozdev.org/" target="_blank">Mycroft project</a> contains an extensive list of compatible plugins covering thousands of websites.&#160; But if the site you want isn&#8217;t listed there don&#8217;t despair &#8211; its easy to create your own!</p>
<p>I&#8217;ve been using <a title="Fishpond Online Books/DVD/CD Store" href="http://www.fishpond.com.au/index.php?ref=448" target="_blank">Fishpond</a> to buy books and DVDs because they are consistently among the cheapest online stores in Australia.&#160; To make it easier to shop there I decided to create a search plugin for Firefox.&#160; </p>
<p>The whole process was pretty painless:</p>
<ol>
<li>Go to the <a title="Mycroft search plugin submission page" href="http://mycroft.mozdev.org/submitos.html" target="_blank">Mycroft search plugin submission page</a> and start entering basic description, classification and author information for the plugin. </li>
<li>Choose an icon for the search plugin.&#160; Typically the best choice is the favicon for the website you are searching.&#160; You can download it by opening the favicon.ico file in the root directory for the website. e.g.      <br /><code>http://www.fishpond.com.au/favicon.ico </code></li>
<li>Open a new tab, go to the website you are building the plugin for and execute a search using a simple term.&#160; Once the search page appears copy the URL from the location bar.&#160; In my case I searched on the term &quot;TEST&quot; and got the following URL: <small>(Note: Single URL line wrapped)</small>     <br /><code>http://www.fishpond.com.au/advanced_search_result.php?<br/>      keywords=TEST&amp;x=50&amp;y=13 </code></li>
<li>Replace the search term (e.g. TEST) with the value &quot;{searchTerms}&quot;.&#160; This should be pasted into the &quot;Search URL&quot; field on the submission form.&#160; e.g. <small>(Note: Single URL line wrapped)</small>     <br /><code>http://www.fishpond.com.au/advanced_search_result.php?<br/>      keywords={searchTerms}&amp;x=50&amp;y=13 </code></li>
<li>The &quot;Search Form&quot; field needs to be filled in with the page containing the search results.&#160; This will be the search URL minus everything to the right of the question. e.g. <code>http://www.fishpond.com.au/advanced_search_result.php </code></li>
<li>Hit the &quot;Generate Plugin&quot; button, look at the generated XML, and if it looks OK hit the &quot;Submit&quot; button. </li>
<li>If all goes well you will be taken to a page showing your submitted plugins.&#160; Install and test the new plugin, and if it searches as expected you are done! </li>
</ol>
<p>The whole process takes less than 5 minutes and you will now be able to search this site from the convenience of your browser&#8217;s search box!</p>
<p><strong>Note:</strong> Please see the <a title="Mozilla developer pages for OpenSearch" href="http://developer.mozilla.org/en/docs/Creating_OpenSearch_plugins_for_Firefox">Mozilla developer page</a> if you need more detail on how to create OpenSearch plugins.&#160; You might also consider adding your new search plugin to <a title="Opensearchlist" href="http://www.opensearchlist.com/" target="_blank">Opensearchlist</a> or <a title="http://www.searchplugins.net/" href="http://www.searchplugins.net/" target="_blank">Searchplugins</a> so more people can find it.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Ftech.niques.info%2Fdiy-firefox-opensearch-plugin%2F';
  addthis_title  = 'Creating+Your+Own+Firefox+Search+Plugin+in+5+Minutes+or+Less%21';
  addthis_pub    = 'DawMatt';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://tech.niques.info/diy-firefox-opensearch-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

