Remove This Application Was Created By A Google Apps Script User Free |top| Link

To remove the banner, you must move your project from a basic, unverified state into a verified Google Cloud Platform (GCP) project. Step-by-Step Guide to Removing the Warning

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

By default, Google Apps Script uses a hidden, default GCP project. You must manually link it to a standard GCP project to gain control over verification. Open your Google Apps Script project.

Some users try embedding the Apps Script URL in another website. However, the banner often remains because it is tied to the Apps Script domain . To remove the banner, you must move your

The negative margin-top value on the iframe essentially pushes the top 50 pixels of the Google Script (where the banner resides) up and out of the visible screen area. The user only sees your clean interface.

Load the extension locally into Chrome via chrome://extensions/ by enabling and clicking Load unpacked . Why this works:

.app-wrapper width: 100%; height: 600px; overflow: hidden; /* This crops out anything outside the boundary */ position: relative; border: 1px solid #ccc; .hidden-banner-iframe position: absolute; top: -50px; /* Adjust this value until the banner is completely pushed out of sight */ left: 0; width: 100%; height: calc(100% + 50px); /* Extends the bottom to prevent blank space */ border: none; Use code with caution. Warning on This Approach Click Set project

By utilizing a Google Workspace Developer account (or standard Workspace organization accounts), you can deploy your application with altered visibility permissions. Step-by-Step Implementation: Open your .

function doGet() return HtmlService.createHtmlOutputFromFile('Index') .setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL); Use code with caution.

You can save the following JavaScript code as a bookmarklet to instantly hide the warning with one click: Open your Google Apps Script project

Are you using a or a paid Google Workspace account ?

Imagine you built a script that sends emails from Google Sheets. You see the warning every time you run it.

Google removes this banner automatically under specific organizational accounts. If you run your script using a paid Google Workspace account (formerly G Suite) and restrict access to users inside your own domain , the banner will not display. Open your Apps Script project. Click > New deployment . Select Web app . Under Who has access , select Anyone within [Your Domain] .

For developers trying to deliver a polished, commercial, or professional user experience, this message feels like an unappealing "unverified" stamp that hurts credibility and alters mobile display scaling.