Remove This Application Was Created By A Google Apps Script User Free [extra Quality] [2026]
By using specific CSS properties on the iFrame container, you can visually push the Google banner out of the viewable area of the webpage. How to implement:
If you want a professional look without the banner, you can move your front-end away from script.google.com .
When you create a Google Apps Script application, it automatically generates a message that says "This application was created by a Google Apps Script user." While this message may be useful for debugging purposes, it's not exactly the most visually appealing thing to see on your application. Moreover, it can make your application look less professional and raise questions about its legitimacy. By using specific CSS properties on the iFrame
Enter the of your standard GCP project. (If you do not have one, go to the Google Cloud Console, create a new project, and copy the Project Number from the dashboard). Click Set project . Step 2: Configure the OAuth Consent Screen
Fortunately, you can eliminate this banner and provide a seamless, branded experience for your users. The Core Solution: Switch to a Google Workspace Account Moreover, it can make your application look less
you can write inside the script itself to delete the banner because it is injected by Google's servers outside of your HTML body. Security Purpose
In your Apps Script editor, go to Project Settings and click "Change Project." Enter your Project Number. Configure your OAuth Consent Screen in the GCP Console. Click Set project
While this doesn't always instantly vanish the footer, it allows you to submit your application for "Verification." Once Google verifies your app, the "unverified app" warnings disappear, and the footer becomes much less intrusive. Method 3: Use a Custom Domain with an Iframe Wrapper
I can provide the exact code snippets or step-by-step setup guide for the path you choose. Share public link
function doGet(e) let htmltemplate = HtmlService.createTemplateFromFile('index'); htmltemplate.params = JSON.stringify(e.parameter); htmltemplate.sessionid = Utilities.getUuid(); let html = htmltemplate.evaluate() .setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL) .addMetaTag('viewport', 'width=device-width, initial-scale=1'); return html;
Fortunately, there are several completely to bypass, hide, or permanently eliminate this banner from your user interface. This comprehensive guide will walk you through every working solution, from simple CSS injections to advanced custom hosting. Method 1: The CSS Injection Hack (Easiest & Fastest)