Browser search plugins

In spare moments in the past few weeks I’ve been revisiting browser search plugins. I’ve created plugins for CloudEngine/ Cloudworks, iSpot, the Journal of Interactive Media in Education, and The Open University. I thought I’d jot down what they are, why they’re useful and how I’m integrating them into my projects.

Screenshot of adding Cloudworks search to Firefox.

When you use browsers like Firefox and Internet Explorer you may notice the search box next to the browser’s address bar (in Chrome it’s combined with the address bar, as the omni-bar). This allows you to search directly in, for example, Google without visiting the Google site first. That, in short, is a browser search plugin. Firefox typically comes installed with a number including ones for Google, Yahoo, Wikipedia and Bing.

And, it’s fairly easy to write a plugin for your own site, based on the OpenSearch description format, a specification for an XML file. This will make it easier to search your site and encourage people to come back.

Pre-requisites for a search plugin include interesting content to search, and a search function for your site. If you don’t have your own search, you can always use Google Custom Search to create a search-engine.

At the heart of the plugin XML is a template for the search URL, as shown in the code snippet below. The {searchTerm} placeholder will be replaced with your query-text when you run a search. Follow the tips from Mozilla to create the plugin. Remember to use your site’s favicon and so on.

<?xml ...?>
<OpenSearchDescription xmlns=... >
    <ShortName> Cloudworks </ShortName>

    <Url type="text/html" template="http://cloudworks.ac.uk/search/result?q={searchTerms}" />
    ...
</OpenSearchDescription>

The next stage is to test it out. Create a HTML file that refers to your plugin XML like so:

<link
    rel="search"
    type="application/opensearchdescription+xml"
    title="MY SEARCH"
    href="local/opensearch_desc.xml" />

As shown in the screen shot at the top, when you view a HTML page containing the search auto-discovery <link> in Firefox you will have the opportunity to install the plugin.

So, you’ve tested the plugin. What next? To allow others to use the plugin submit it to the Mycroft search plugin database. For example, here are plugins for searching the Moodle forums, docs, code etc.

Mycroft is great, but you’ll also want to integrate the plugin in your own site. Use the auto-discovery <link> above for compatibility with Firefox. For Internet Explorer and to make the plugin more visible consider some Javascript like the snippet below. This is a jQuery script to detect if the browser supports OpenSearch-based plugins. It adds a <button>` on the page corresponding to each search .

There is an OpenSearch plugin for Drupal, and the snippet above can be used directly in a custom Drupal block – see the buttons at the bottom of this page. The plugins support Firefox, Internet Explorer and the Chrome browser.

We’ll be rolling out a search plugin for Cloudworks in the next week. And there are more on Mycroft.

I end by pointing to the tools I used while writing the plugins – Dropbox, Bitbucket and Github Gists. You can get started just using a browser, text editor, Google Custom Search and Mycroft.

Happy searching!

'SM' comments disabled.

'ID' comments disabled.