CmdUtils.makeSearchCommand(
{
    names: ["ebayde", "ede", "debay"],
    help: "ebayde OR ede OR debay [search item]",
    author: {name: "Digioso", email: "webmaster@digioso.org"},
    homepage: "http://www.digioso.org",
    license: "GPL",
    url: "http://search.ebay.de/search/search.dll?satitle={QUERY}",
    icon: "chrome://ubiquity/skin/icons/ebay.ico",
    description: "Searches <a href=\"http://search.ebay.de\">eBay.de</a> for auctions matching the given words. I used the Ubiquity ebay command and enhanced it.",
    preview: function(pBlock, {object})
    {
        if (object.text)
            pBlock.innerHTML = _("Searches eBay for ${query}",{query:object.text});
        else
            pBlock.innerHTML = _("Searches eBay for the given words.");
    }
});