Skip to content

Instantly share code, notes, and snippets.

@mikedamage
Created January 22, 2009 20:24
Show Gist options
  • Save mikedamage/50691 to your computer and use it in GitHub Desktop.
Save mikedamage/50691 to your computer and use it in GitHub Desktop.
/* BTJunkie Torrent Search */
CmdUtils.CreateCommand({
name: "btjunkie",
icon: "http://btjunkie.org/favicon.ico",
preview: "Search btjunkie.org for torrents",
author: { name: "Mike Green", email: "mike@fifthroomcreative.com" },
license: "GPL",
takes: {"input": noun_arb_text},
execute: function(input) {
Utils.openUrlInBrowser("http://btjunkie.org/search?q="+encodeURIComponent(input.text));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment