Remove This Application Was Created By A Google Apps Script User Free ^new^ -
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 The message " This application was created by
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)
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 Minimal checklist
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 Link script to a GCP project
Here’s a short article explaining how to remove the phrase “This application was created by a Google Apps Script user free” from your Google Apps Script project’s authorization screen.
Minimal checklist
- Link script to a GCP project.
- Complete OAuth consent screen: app name, support email, developer contact.
- Add authorized domains and branding (logo, privacy policy).
- Submit for verification if using sensitive/restricted scopes.
- Deploy as production (not “testing”) with appropriate access settings.
If you want, tell me whether this is a standalone web app, add-on, or an HTML sidebar inside Google Sheets/Docs and I’ll give exact step-by-step commands for that case.
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.
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:
- Open your Google Apps Script project.
- Click on the "Resources" menu (usually represented by a gear icon).
- Select "Advanced settings" from the drop-down menu.
- Scroll down to the "Delete project" section.
- 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:
- Go to the Google Apps Script dashboard.
- Find the project you want to delete and click on the three vertical dots next to it.
- 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:
- Google Apps Script documentation: Google provides extensive documentation on Google Apps Script, including guides on deleting projects.
- Google Apps Script community forum: The Google Apps Script community forum is a great place to ask questions and get help from other users.
- 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:
- Backup your code: Make a copy of your code to prevent losing any important work.
- Check for dependencies: Ensure that the project you're deleting doesn't have any dependencies or integrations with other apps or services.
- 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.
Part 4: When Free Methods Won’t Work – Paid Verification
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):
- $25 one-time fee for basic verification (if no sensitive scopes). Initially, Google required $5 but increased it.
- $100+ annually for premium verification if you use restricted scopes (Gmail, Drive full access).
The process:
- Go to Google Cloud Console.
- Enable your project for OAuth consent screen.
- Submit for verification (takes 2–6 weeks).
- Pay the fee.
After verification: The warning is completely removed for all users.
Part 2: Can You Remove It Completely for Free?
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:
- Open the Google Doc, Sheet, or Form where the script is embedded.
- Look for a custom menu (e.g., “My Scripts,” “Automation,” or the project name).
- Instead of re-authorizing every time, run the script once and check “Remember this decision” if prompted (though Google rarely offers this).
- Better yet, ask the developer (if you know them) to publish the script as a Google Workspace Add-on (see Method 4 below).
Why It’s Worth the Small Investment
Removing that “free user” label does more than clean up UI. It:
- Builds trust with your clients or team members.
- Makes your app look paid or custom – even if you’re giving it away.
- Removes distractions from the core user experience.
- Opens the door to other Workspace features (shared drives, 24/7 support, more Apps Script quotas).
At $6–$12/month, removing that single line of text is one of the cheapest “branding fixes” you’ll ever buy.
Method 3: Use a Library Instead of a Web App
If your script is a web app (HTML/doGet), the warning appears heavily. But if you can embed your code as a library:
- Create a standalone script.
- Set sharing to “Anyone with link can view” (or domain-wide).
- In your main script, add the library via Script ID.
- Call functions from the library.
Result: No warning appears because libraries run under the calling user’s authorization.
This is the cleanest free method for developers distributing tools within an organization.