Skip to content

Instantly share code, notes, and snippets.

/x

Created June 9, 2009 06:15
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/126310 to your computer and use it in GitHub Desktop.
Save anonymous/126310 to your computer and use it in GitHub Desktop.
CmdUtils.CreateCommand({
name: "niconico",
description: "ニコニコ動画",
help: "コメントをつけられる動画引用サイトのニコニコ動画(RC)です。検索前のログインが必要です。",
query_url: "http://www.nicovideo.jp/search?k=f&o=d&s=",
icon: "http://www.nicovideo.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