Skip to content

Instantly share code, notes, and snippets.

@adamprocter
Created September 6, 2009 22:43
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 adamprocter/182036 to your computer and use it in GitHub Desktop.
Save adamprocter/182036 to your computer and use it in GitHub Desktop.
open url in Ubiquity 0.5
CmdUtils.CreateCommand({
names:["url"],
arguments: [{role: "object", nountype: noun_arb_text, label:"Enter a url to navigate to it!"}],
execute:function(args){
Utils.openUrlInBrowser(args.object.text);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment