Retrieves the JSON manifest that was used to create the application. Invokes the error callback if the application was not created from a manifest.
Example
var application = fin.desktop.Application.getCurrent();
application.getManifest(function (manifest) {
    console.log("Application manifest:");
    console.log(manifest);
});