Remove This Application Was Created By A Google Apps Script User Free __hot__ -

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:

  1. Open your Google Apps Script project.
  2. Click on the "Resources" menu (usually represented by a gear icon).
  3. Select "Advanced settings" from the drop-down menu.
  4. Scroll down to the "Delete project" section.
  5. Click on the "Delete project" button.

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:

  1. Go to the Google Apps Script dashboard.
  2. Find the project you want to delete and click on the three vertical dots next to it.
  3. Select "Delete" from the drop-down menu.

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:

  1. Google Apps Script documentation: Google provides extensive documentation on Google Apps Script, including guides on deleting projects.
  2. Google Apps Script community forum: The Google Apps Script community forum is a great place to ask questions and get help from other users.
  3. Google Apps Script GitHub repository: The Google Apps Script GitHub repository contains sample code and scripts that can help you manage and delete projects.

Best Practices for Removing Google Apps Script Projects

Before removing a Google Apps Script project, make sure to:

  1. Backup your code: Make a copy of your code to prevent losing any important work.
  2. Check for dependencies: Ensure that the project you're deleting doesn't have any dependencies or integrations with other apps or services.
  3. Verify ownership: Confirm that you have ownership or administrative rights to the project.

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 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.

Why It’s Worth the Small Investment

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.

What Exactly Is This Warning Message?

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.”

Method 2: Bypass the Warning (As a User)

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:

  1. Open the Google Doc, Sheet, or Form where the script is embedded.
  2. Look for a custom menu (e.g., “My Scripts,” “Automation,” or the project name).
  3. Instead of re-authorizing every time, run the script once and check “Remember this decision” if prompted (though Google rarely offers this).
  4. Better yet, ask the developer (if you know them) to publish the script as a Google Workspace Add-on (see Method 4 below).

Method 1: Remove the Warning as an End-User (Revoke Access)

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.