bcardoso (owner)

Revisions

gist: 137336 Download_button fork
public
Description:
dic
Public Clone URL: git://gist.github.com/137336.git
Embed All Files: show embed
dic #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* command "dic" */
CmdUtils.makeSearchCommand({
  names: ["dic"],
  icon: "chrome://ubiquity/skin/icons/favicon.ico",
  homepage: "http://catarse.110mb.com/ubiquity",
  author: { name: "Bruno Cardoso"},
  license: "GPL",
  description: "Procura o significado da palavra em vários dicionários em português.",
  help: "dic palavra",
  url: "http://catarse.110mb.com/dic/index.php?s={QUERY}",
  preview: function( pblock, args) {
    var preview = "<p>" + _("no preview. go.") + "</p>";
    pblock.innerHTML = preview;
  }
});