function doGet() {
return HtmlService.createTemplateFromFile('form.html')
.evaluate() // evaluate MUST come before setting the Sandbox mode
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
}
The above is code from my Google script app. The code above allows embedding my script on all domains. What if i want to allow embedding the code only by specified domains, how would i edit the code