The Text:
"This application was created by a Google Apps Script user."
How to remove this text:
If you are using the MailApp or GmailApp service in your script, Google automatically appends this footer to prevent spamming. You cannot remove it using the standard free tier of Google Apps Script.
To remove it, you must switch to using the Gmail API in your script. Here is a basic example of how to send an email without the footer using the API:
function sendEmailWithoutFooter() var recipient = 'example@email.com'; var subject = 'Test Subject'; var body = 'This is the body of the email.';// Create the raw email content var raw = 'To: ' + recipient + '\r\n' + 'Subject: ' + subject + '\r\n\r\n' + body;
// Encode the message var encodedMessage = Utilities.base64EncodeWebSafe(raw);
// Send using the Gmail API Gmail.Users.Messages.send( raw: encodedMessage , 'me');
Note: You must enable the Gmail API service in your script project (Services > Gmail API) for this code to work.
You're looking for information on removing an application created by a Google Apps Script user for free. Here's some relevant content:
Removing a Google Apps Script Project
If you've created a Google Apps Script project and want to remove it, you can do so by following these steps: The Text:
Deleting a Google Apps Script Project Created by Another User
If you're an administrator or have ownership of a Google Apps Script project created by another user, you can delete it by following these steps:
Free Resources to Remove Google Apps Script Projects
If you're looking for free resources to help you remove Google Apps Script projects, here are a few options:
Best Practices for Removing Google Apps Script Projects
Before removing a Google Apps Script project, make sure to:
By following these steps and best practices, you should be able to remove your Google Apps Script project created for free.
There is no direct "free" button or setting to remove the "This application was created by a Google Apps Script user" banner within the Google Apps Script editor. This banner is a security feature automatically applied to web apps and deployments that are not formally verified.
However, you can use several workarounds to hide or bypass this warning: Professional & Official Methods
Embed in Google Sites or External Webpages: The banner is often hidden when you embed the script's URL as an within a Google Site or your own website.
Google Workspace Accounts: If you are part of a Google Workspace organization, users within your same domain generally will not see this banner when accessing your scripts.
Create an Add-on: Converting your script into a verified Google Workspace Add-on removes the banner entirely for all users, though this requires a more formal development and review process. Technical Workarounds
Host the HTML Yourself: You can host your app's frontend HTML/JS on a service like GitHub Pages and call your Google Apps Script as a backend API. This prevents the banner from appearing because users are not viewing a script.google.com URL directly.
Browser Extensions (Developer Only): For personal use or public displays, you can use browser extensions like uBlock Origin or custom CSS injectors to set the banner's container (often with an ID like warning) to display: none;. Note that this only hides the banner for you, not other users.
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.
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 pointing to your Apps Script URL.
Ensure your Apps Script deployment is set to XFrameOptionsMode.ALLOWALL in your doGet function to allow it to be framed by external sites. 3. Use Browser Extensions (Internal/Personal Use)
If the app is only for your personal use or a small internal team, you can use a browser extension to hide the banner locally.
Install an extension like Custom JavaScript for websites or uBlock Origin.
Note: This only works for users who have the extension installed. 4. Professional Alternatives (Verification)
For a permanent solution that doesn't involve workarounds, you can link your script to a verified Google Cloud Project (GCP).
Once your app is verified by Google, the banner disappears for all users.
This process is free but requires a detailed security review if your script uses sensitive data.
For a walkthrough on how to properly deploy and access your web app URL:
While there is no direct "off" switch in the Google Apps Script settings to remove the branding banner for free, you can use technical workarounds to hide it from your end users. Google includes this banner as a security measure to alert users that the application was not created by Google itself. Workaround 1: Embedding via Iframe
The most common free method to "remove" the banner is to hide it by embedding your web app into a separate website using an .
How it works: When the script is embedded, the banner typically does not display.
Implementation: You can host a simple HTML file for free on services like GitHub Pages or Google Sites. Example Code:
Use code with caution. Copied to clipboard Workaround 2: Google Workspace Domain
If you are part of a Google Workspace organization, the banner is automatically hidden for other users within your same domain. It will only appear to external users outside of your organization. Workaround 3: Verified Add-ons "This application was created by a Google Apps Script user
For a truly professional appearance without the banner, you must publish your script as a verified Google Workspace Add-on.
Requirements: This requires a verified Google Cloud project and an official review process by Google.
Cost: While publishing itself is free, obtaining the necessary verification often requires a Workspace account, which is a paid service. Important Limitations
Authentication: If your web app requires the user to log in ("Execute as: user accessing the app"), an iframed version may fail to show the login screen due to security restrictions.
Mobile Scaling: Some users have reported that the banner can cause horizontal scrolling issues on mobile devices, which embedding in a responsive site can help fix.
Removing that “free user” label does more than clean up UI. It:
At $6–$12/month, removing that single line of text is one of the cheapest “branding fixes” you’ll ever buy.
Before we show you how to remove it, you need to understand what you are dealing with.
Google Apps Script is a cloud-based scripting language for light-weight application development within the Google Workspace ecosystem. Millions of users (from solo developers to large corporations) use it to automate tasks in Google Sheets, Docs, Forms, and Gmail.
When someone creates an Apps Script project and deploys it as a web app or an add-on, Google automatically inserts a security notice. The notice says: “This application was created by a Google Apps Script user” to distinguish it from an official Google-made app (like Google Forms or Google Docs).
This message is NOT a virus. This message is NOT malware. This message does NOT mean your account is hacked. How to remove this text: If you are
It is simply Google’s way of saying: “Hey, a regular user (not Google) built this tool. Use at your own discretion.”
If you want to use the script but find the extra click annoying, you cannot “delete” the warning from Google’s servers. However, you can bypass it permanently by using the script from a trusted environment.
Here is a free workaround:
If you do not trust the application or simply want the pop-up to stop appearing, you do not need to “remove” the message itself—you need to remove the app’s access to your account.
Here is how to do that for free:
Step 1: Open your Google Account settings. Go to myaccount.google.com and sign in.
Step 2: Navigate to “Security” on the left sidebar.
Step 3: Scroll down to “Third-party apps with account access” and click “Manage third-party access.”
Step 4: Look for the app name that matches the one showing the warning. It may be listed as an “Unverified app” or “Apps Script” project.
Step 5: Click on the app name, then select “REMOVE ACCESS” .
Once you remove access, the next time you try to use that specific script, Google may ask you to re-authorize it. But the pop-up will no longer appear automatically.
Important: This removes the application, not the warning per se. The warning will only appear again if you re-authorize a script.