Remove This Application Was Created By A Google Apps Script User Free Work Jun 2026

Here’s a short article explaining how to remove the phrase “This application was created by a Google Apps Script user free” from your Google Apps Script project’s authorization screen.

The blue banner stating "This application was created by a Google Apps Script user" is a built-in security warning designed to protect users from unverified or potentially malicious scripts. While there is no official "one-click" button to disable it for free on public web apps, there are several effective workarounds to hide or bypass it. 1. Embed the Web App in an IFrame Here’s a short article explaining how to remove

False. The warning is server-side, generated by Google’s OAuth system. Cache clearing has no effect. Cache clearing has no effect

function doGet() var html = HtmlService.createHtmlOutputFromFile('index'); html.setTitle('Your Application Title'); // Set your application title here return html; html.setTitle('Your Application Title')