igorette (owner)

Fork Of

gist: 16415 by Royall mailinator Ubiquity command

Revisions

  • 48d9ec Sun Oct 12 11:00:20 -0700 2008
gist: 19398 Download_button fork
public
Public Clone URL: git://gist.github.com/19398.git
Embed All Files: show embed
Text only #
1
2
3
CmdUtils.CreateCommand({ name: "mailinator", icon: "http://www.mailinator.com/favicon.ico", author: { name: "Royall", email: "royallwithcheese@gmail.com"}, description: "Opens a mailinator inbox of the name inputted", takes: {"inbox": noun_arb_text}, preview: function( pblock, sParams ) { pblock.innerHTML = "Open Mailinator inbox: " + sParams.text; }, execute: function( sParams ) { var sP = "http://mailinator.com/maildir.jsp?email=" + sParams.text; Application.activeWindow.open(Utils.url(sP)); } })