Created
June 17, 2012 13:56
-
-
Save joewalker/2944612 to your computer and use it in GitHub Desktop.
Hello Command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Any copyright is dedicated to the Public Domain. | |
* http://creativecommons.org/publicdomain/zero/1.0/ */ | |
Components.utils.import("resource:///modules/devtools/gcli.jsm"); | |
var helloCommandSpec = { | |
name: 'hello', | |
description: 'Show a message', | |
params: [ | |
{ | |
name: 'name', | |
type: 'string', | |
description: 'Who to say hello to', | |
} | |
], | |
exec: function(args, context) { | |
return 'Good morning, ' + args.name; | |
} | |
} | |
gcli.addCommand(helloCommandSpec); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment