carlosbrando (owner)

Fork Of

gist: 10791 by Neto Ubiquity - Viu Isso? - Mich...

Revisions

gist: 10861 Download_button fork
public
Public Clone URL: git://gist.github.com/10861.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CmdUtils.CreateCommand({
  name: "viu",
  icon: "http://www.viuisso.com.br/favicon.ico",
  author: {name: "Mentor Muniz", email: "neto@bullet.com.br"},
  description: "Viu Isso? Search",
  homepage: "http://www.viuisso.com.br/",
  takes: {"query": noun_arb_text},
 
 
  execute: function (q) {
    var url = "http://www.viuisso.com.br/?s="+q.text;
    Utils.openUrlInBrowser (url);
  }
});