rhyme - Rhyme a given word
If you have Ubiquity, you should see a notification at the top asking you to subscribe to this feed, thus "installing" the command below.
source:
CmdUtils.makeSearchCommand({
name: "rhyme",
author: {name: "rakudave", email: "public@rakudave.ch"},
homepage: "http://www.rakudave.ch/",
license: "GPL",
description: "Rhyme a word with rhymer.com",
icon: "http://www.rhymer.com/favicon.ico",
url:"http://www.rhymer.com/RhymingDictionaryLast/{QUERY}.html",
preview: function(pBlock, directObj) {
if (directObj.text)
pBlock.innerHtml = "Rhyme " + directObj.text;
else
pBlock.innerHTML = "Rhyme the given word.";
}
});