Remove This Application Was Created By A Google Apps Script User Free
Google automatically injects this security banner into standalone web applications deployed via Google Apps Script . It serves as a security disclosure to prevent phishing and protect everyday users. However, the banner often disrupts mobile layouts, limits professional branding, and forces annoying responsive design bugs.
One common but approach attempts to hide the footer using injected CSS or DOM manipulation:
for your script to make it look even more official. One common but approach attempts to hide the
If you use Google Sheets, Forms, or Web Apps to run custom scripts, you have likely encountered a prominent warning banner. It reads: "This application was created by a Google Apps Script user."
The security warnings are in place for a reason—to protect users. Removing them should only be done through the official processes once your application is trustworthy and compliant. Removing them should only be done through the
Are you building this for or for external clients ?
If you are a Google Workspace user and set the app to "Internal," the banner usually disappears immediately for members of your organization. For External Apps: You must click Submit for Verification . the banner often disrupts mobile layouts
If you are using the script as a Web App, you can embed it into your own website. This doesn't "delete" the banner code, but it can visually isolate the app within your own branding. Set the X-Frame-Options to allow embedding. Use the following code in your doGet() function: javascript
: If the app is shared externally, the banner may still appear to outside users unless the script is bound to a Google Cloud Platform (GCP) project with a verified OAuth consent screen. 2. Embed the Web App in an iFrame with CSS Overflows








