Ubiquity search for Bloggy.se

For people who have installed Ubiquity from Mozilla Labs, here’s a user script that enables you to quickly search for words in Bloggy:

makeSearchCommand({
  name: "Bloggy",
  url: "http://bloggy.se/search/{QUERY}",
  icon: "http://bloggy.se/favicon.ico",
  description: "Searches Bloggy for...",
  preview: function(pblock, directObject) {
    var searchTerm = directObject.text;
    var pTemplate = "Searches Bloggy.se for ${query}";
    var pData = {query: searchTerm};
    pblock.innerHTML = CmdUtils.renderTemplate(pTemplate, pData);
  }
});

I’ve added Ubiquity meta information to this page so that you should see a Firefox bar across the top of the page asking you whether or not to install/subscribe to this script.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*