CmdUtils.CreateCommand({ name: "ft-s", takes: {"search term": noun_arb_text}, icon: "http://fruitunes.com/images/fruit.png", preview: "Searches for a song on FruiTunes", description: "Takes you to the FruiTunes Search Page.", execute: function(theSearch){ Utils.openUrlInBrowser("http://www.fruitunes.com/search.php?q="+theSearch.text); } }); CmdUtils.CreateCommand({ name: "fruitunes", takes: {"song":noun_arb_text}, icon: "http://www.fruitunes.com/images/fruit.png", preview: "Play specified song", description: "Goes to FruiTunes and plays song", execute: function(theSong) { Utils.openUrlInBrowser( "http://www.fruitunes.com/index.php?find="+theSong.text ); } }); CmdUtils.CreateCommand({ name: "ft-i", takes: {"song":noun_arb_text}, modifiers: {from:noun_arb_text}, icon: "http://www.fruitunes.com/images/fruit.png", preview: "Insert a link to the specified song", description: "Inserts a link to the specified song", execute: function(theSong,mods) { CmdUtils.setSelection( "http://www.fruitunes.com/playlist.php?u="+mods.from.text+"&song="+theSong.text ); } });