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

If you are distributing a public web app or add-on to users outside your domain, you cannot remove the warning for free. Google mandates verification through the OAuth verification process.

Cost (as of 2025):

The process:

After verification: The warning is completely removed for all users.


Avoid any service or script that claims it was "created by a Google Apps Script user" and asks you to pay or click to remove a watermark. This is a red flag for phishing and account abuse. Stay safe and only authorize scripts from trusted, verified developers.

To remove the "This application was created by a Google Apps Script user" banner from your web app, you need to transition the project from a personal account to a professional environment.

Here is a guide on how to get a clean, professional look for your Google Apps Script projects. How to Remove the Google Apps Script Header

The "Free" version of Google Apps Script automatically attaches this banner as a security measure to let users know the script isn't an official Google product. To remove it, you have two primary options: 1. Upgrade to Google Workspace

The most direct way to remove the banner is to use a Google Workspace account (formerly G Suite) instead of a standard @gmail.com account.

The Rule: If you are part of a Google Workspace organization and you deploy the web app to be accessed only by users within your domain, the banner is usually hidden.

External Users: If you share the app with people outside your organization, the banner may still appear to them for security reasons. 2. Use a Custom Frontend (The "Proxy" Method)

If you don't want to pay for Workspace, you can hide the banner by using Google Apps Script as a back-end API rather than the front-end host.

How it works: Host your HTML/CSS on a platform like GitHub Pages, Vercel, or Netlify. If you are distributing a public web app

The Connection: Use JavaScript fetch() or google.script.run to send data to your Apps Script (deployed as a Web App).

The Result: Since the user is visiting yourwebsite.com instead of ://google.com, the Google banner never triggers. 3. Embed in a Google Site

In some specific configurations, embedding your Web App within a Google Site (google.com) can mask the header. However, this is less reliable than the previous methods as Google frequently updates their iframe security policies. Important Security Note

Google keeps this banner to prevent "phishing"—where bad actors create fake login pages that look like Google services. If you remove the banner using a custom frontend, ensure you are still following Google's OAuth verification processes if your app handles sensitive user data.

The message " This application was created by a Google Apps Script user

" is a standard security disclaimer automatically added by Google to identify that the web app is third-party and not an official Google product. no official "one-click" way to remove this banner

for free on a personal (@gmail.com) account, as it is a fundamental security feature of the platform. However, there are several methods to work around it or minimize its visibility: 1. Embed the App in a Google Site (Recommended)

The most common "legitimate" workaround is to embed your Apps Script Web App into a Google Site.

: The banner is typically hidden when viewed within the frame of a Google Site or a website. How to do it Google Site , and paste the URL of your deployed web app. 2. Use a Google Workspace Account

If you use a paid Google Workspace (formerly G Suite) account, the banner behavior changes: Internal Users

: The banner is not shown to users within the same organization domain. External Users

: It may still appear unless the script is part of a verified Google Cloud project or published as a Workspace Add-on 3. Browser-Side Hiding (Developer/Private Use Only) The process:

If you are only using the app for yourself or on a public display (like a TV), you can hide the banner locally using browser tools. Extensions : Tools like uBlock Origin Custom JavaScript can be used to set the CSS of the banner element to display: none; JavaScript Code javascript document.getElementById( ).style.display = Use code with caution. Copied to clipboard

Note: This only hides it for you; other visitors will still see it. 4. Verify Your App with Google

For production-level apps, you can follow the official verification process through the Google Cloud Console

: Create a standard Google Cloud project, link it to your script, and submit it for review.

: While this primarily removes the "Google hasn't verified this app" warning screen, it is the only way to officially identify your developer credentials to Google. Google Site to hide the banner? Is there any way to remove the banner? : r/GoogleAppsScript

How to Remove the "Created by a Google Apps Script User" Banner for Free

When you deploy a Google Apps Script as a web app, Google automatically inserts a grey header banner that reads: "This application was created by another user, not by Google." This is a security measure to inform users they are interacting with third-party code rather than an official Google product.

While there is no "off" switch in the settings for free consumer accounts, there are several effective workarounds to hide or remove this banner.

1. Embed the App in a Google Site (Most Effective Free Method)

The most reliable way to hide the banner for free is to embed your script's URL into a Google Site. When the web app is viewed through an iframe on a Google-hosted site, the warning banner is typically suppressed.

Step 1: In your Apps Script editor, click Deploy > New deployment.

Step 2: Select Web app and set "Execute as" to your account and "Who has access" to "Anyone". Step 3: Copy the Web App URL. After verification: The warning is completely removed for

Step 4: Go to your Google Sites project, click Embed, paste the URL, and publish the site. 2. Self-Host with a GitHub Pages Wrapper

If you want to host the app on your own domain or a custom site for free, you can use a "wrapper" approach.

Create a simple HTML file (hosted on GitHub Pages) that contains an .

Permissions: Ensure you set HtmlService.XFrameOptionsMode.ALLOWALL in your script's doGet() function to allow it to be framed by external sites. 2. Deploy Within a Google Site

If you don't want to manage external hosting, embedding the web app directly into a Google Site can often suppress the warning for users within your organization or those viewing the site. This is because Google considers its own ecosystem a "safe" container for the script. 3. Use a Google Workspace Account

If you are building an application for internal use, the banner is automatically hidden for users who are in the same Google Workspace domain as the script owner.

Benefit: This removes the banner without any extra coding or embedding.

Free Alternative: If you are using a standard @gmail.com account, you will still see the banner unless you use the iframe method mentioned above. 4. Browser-Side Hiding (For Personal Use)

If you only want to remove the banner for yourself or a small team, you can use browser extensions to hide the CSS element of the banner.

Chrome Extensions: Tools like Custom JavaScript for Websites allow you to run a script that sets the banner's display to "none".

Script Snippet: document.getElementById('warning').style.display = 'none';. 5. Official Verification (Long-Term Solution)

To remove all "Unverified App" warnings and the banner officially, you must link your script to a Google Cloud Project (GCP) and complete the OAuth verification process. Is there any way to remove the banner? : r/GoogleAppsScript

The banner "This application was created by a Google Apps Script user" is a mandatory security feature for scripts running on free consumer accounts. While there is no "off" switch in the settings, several workarounds can effectively hide or remove it for your users. ⚡ Quick Solutions (Free) 1. Embed as an iFrame

The most common free method is to embed your Apps Script URL into a standard HTML page using an