Create Search Plugin for your Blog

Many of us must be using Mozilla Firefox, So I’ve created a search engine extension which works on Mozilla Firefox and searches with in Chill Geeks. You could also create a similar extension for your blog. Creating Search engine plug-in for Firefox web browser is very easy. Some of the prerequisites to make your search addon,is that, you should have a little idea about working with XML. You can start making your own blog Search Engine using the template below-
<OpenSearchDescription xmlns=”https://a9.com/-/spec/opensearch/1.1/”
                       xmlns:moz=”https://www.mozilla.org/2006/browser/search/”>
engineName
engineDescription
inputEncoding
data:image/x-icon;base64,imageData

 
  …
 


moz:SearchFormsearchFormURL</moz:SearchForm>



I’ve got this template from Mozilla Developer Center. Various terms used in above template are described at Mozilla Developer’s Center
I’ll explain how I created search engine plug-in for Chill Geeks.WithoutImage

  • Open C:Program FilesMozilla Firefoxsearchplugins
  • There you’ll see all search engine plug-in’s xml files, open up any file using Notepad++ or any text Editor and you will get an idea about the working of various search engine addons
  • Now create a new file over there, name it as yoursite.xml
  • Use the template above and make the required changes.

See the example below, which I’ve made for Chill Geeks
https://www.mozilla.org/2006/browser/search/”>
Chill Geeks
Chill Geeks Google Search
UTF-8
https://i724.photobucket.com/albums/ww248/chillgeeks/flex.gif
https://suggestqueries.google.com/complete/search?output=firefox&client=firefox&hl={moz:locale}&q={searchTerms}”/>
https://www.chillgeeks.com/search”>
 


DetailsSuggest

  • Searchplugin is used to define starting of plugin xml
  • Shortname is used to display name in search bar
  • InputEncoding, keep it UTF-8
  • Image, specifies the path of favicon of your site.
  • Url type JSON, fetches Suggestion quiries from Google.
  • Url type html, specifies site to search within.
  • Param (Parameters), vairable seach term.

If you want to get above xml file, please click here.Now you can easily create your blog’s plugin just by modifying this file and changing www.chillgeeks.com to yourblogname.blogspot.com or www.yourcustomdomain.com
You could also specify Image that will appear in search bar by replacing https://i724.photobucket.com/albums/ww248/chillgeeks/flex.gif with your own favicon image URL.
You can also submit your extension to Mozilla Add-ons, which will increase the popularity of your website. Please let me know by comments, if you get any difficulty in making your search engine extension.