in appscript/main.gs [257:268]
function showFinalDialog(fileId, fileName, fileUrl, documentType) {
let html = HtmlService.createTemplateFromFile('ProcessorPicker.html');
html.fileId = fileId;
html.fileName = fileName;
html.fileUrl = fileUrl;
html.documentType = documentType;
html = html.evaluate()
html.setWidth(600)
.setHeight(425)
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
SpreadsheetApp.getUi().showModalDialog(html, 'Process a Document');
}