Skip to content

Instantly share code, notes, and snippets.

/x

Created June 9, 2009 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/126320 to your computer and use it in GitHub Desktop.
Save anonymous/126320 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
name: "rakuten",
description: "楽天で商品検索",
help: "楽天で商品を検索します。",
query_url: "http://pt.afl.rakuten.co.jp/c/038b18ea.44de3902/?url=http%3a%2f%2fesearch.rakuten.co.jp%2frms%2fsd%2fesearch%2fvc%3fsv%3d2%26sitem%3d",
icon: "http://www.rakuten.co.jp/favicon.ico",
stand: "startcommand",
takes: {parameter: noun_arb_text},
_getQuery: function(directObject) {
var query = this.name;
if (directObject.text != "")
query += " " + directObject.text;
return encodeURI(query);
},
preview: function( pblock, directObject ) {
var shot_url = "http://mozshot.nemui.org/shot?";
var img_url = "<img src='" + shot_url + this.query_url + "'/>";
var help = "<p>" + this.help + "</p>";
pblock.innerHTML = help + img_url;
},
execute: function(directObject) {
var url = "http://www.startcommand.com/stand/" + this.stand + "?cmd={QUERY}";
var query = this._getQuery(directObject);
var urlString = url.replace("{QUERY}", query);
Utils.openUrlInBrowser(urlString);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment