@property {Object}
The JSON object that was passed via the
[`cfx --static-args` option](dev-guide/cfx-tool.html#arguments).
For example, suppose your add-on includes code like this:
var system = require("sdk/system");
console.log(system.staticArgs.foo);
If you pass it a static argument named "foo" using `--static-args`, then
the value of "foo" will be written to the console:
(addon-sdk)~/my-addons/system > cfx run --static-args="{ \"foo\": \"Hello\" }"
Using binary at '/Applications/Firefox.app/Contents/MacOS/firefox-bin'.
Using profile at '/var/folders/me/DVFDGavr5GDFGDtU/-Tmp-/tmpOCTgL3.mozrunner'.
info: system: Hello