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:
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.
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 You're looking for information on removing an application
: 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
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
The banner "This application was created by a Google Apps Script user" is a security feature implemented by Google to inform users that the web app they are accessing was created by a third party and not by Google itself.
While there is no direct "off" switch in the script settings for free accounts, you can remove or bypass it using the following methods: 1. Using a Google Workspace Account
If you are part of a Google Workspace organization, the banner will not be displayed to other users within your same domain.
Limitations: External users outside your domain will still see the banner.
Verification: For the banner to be removed for all users (including those outside your domain), the script must typically be published as a verified Google Workspace Add-on or associated with a verified Google Cloud project. 2. Embedding in a Website (iframe)
You can hide the banner by embedding your Google Apps Script web app into another webpage using an .
How it works: Host a simple HTML file on a service like GitHub Pages and use an iframe to display your script.
Constraint: This method primarily works if the web app is deployed with the access setting "Anyone" (anonymous access). If it is set to "Anyone with a Google account," the login prompt may fail to load inside the iframe due to security restrictions. 3. Deploying via Google Sites
Embedding the script directly into a Google Site can often suppress the standard Apps Script header, as Google Sites handles the integration more seamlessly for users. Summary of Options User Account Type Effectiveness Workspace Internal Hidden for members of your own domain. GCP Verification Workspace/Paid Hidden for all users once verified. iframe Embedding Free/Workspace Hidden but may break login for non-anonymous apps. Google Sites Free/Workspace Hidden in many embedded contexts. Remove web app warning for Anyone with Google Account
The blue banner stating "This application was created by a Google Apps Script user" is a built-in security warning designed to protect users from unverified or potentially malicious scripts. While there is no official "one-click" button to disable it for free on public web apps, there are several effective workarounds to hide or bypass it. 1. Embed the Web App in an IFrame
The most common and effective way to hide the banner from your users is to embed your Google Apps Script (GAS) URL within another webpage using an tag.
How to do it: Host a simple HTML file on a free platform like GitHub Pages or your own website.
The Code: Use a basic iframe structure: .
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 Open your Google Apps Script project
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
Alex was a freelance developer who lived by a simple rule: automate everything
. One afternoon, while scouring a forum for productivity hacks, he found a legendary "Life Dashboard" script designed to sync tasks, emails, and calendars into one seamless interface [1, 2].
He spent hours customizing the code. It felt perfect—until he hit "Deploy." A glaring, grey banner appeared at the top of his screen:
"This application was created by a Google Apps Script user."
To a perfectionist like Alex, it was an eyesore. It felt like leaving a price tag on a designer suit [1]. He tried every trick he knew: He dove into the , trying to hide the container [1, 3]. He attempted to use
to mask the source, but the banner just followed him like a shadow [1].
He even tried writing a second script to "delete" the banner from the first one—a digital snake eating its own tail [1, 2].
Deep in a developer thread, he finally found the "secret." The banner wasn't a bug or a mistake; it was Google's security seal Deleting a Google Apps Script Project Created by
[1, 3]. It existed to let users know the app wasn't an official Google product, preventing phishing and keeping the ecosystem safe [1].
Alex realized that removing it via code was nearly impossible because it was injected at the server level
, far above his script's pay grade [1, 3]. The only way to get a "clean" look was to upgrade to a Google Workspace Enterprise account or deploy the project as a Google Cloud
web app—options that cost money he didn't want to spend [3].
He sat back and looked at the banner again. Instead of a flaw, he started seeing it as a badge of honor
. It was proof that he had built something from scratch using nothing but logic and a free tool [1, 2]. He stopped trying to hide it and shared the dashboard with his friends, banner and all.
As it turns out, no one else cared about the grey bar. They were too busy being amazed that the app actually worked [1, 2]. of Google Apps Script or see the workarounds for creating a custom UI without the banner?
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
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.
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 .
The Result: The banner is often suppressed or hidden within the container of the hosting site.
Free Hosting: You can host the container page for free on platforms like GitHub Pages or Google Sites.
Crucial Setting: In your script editor, you must set the X-Frame-Options to ALLOWALL to permit embedding. 2. Browser Extensions (For Personal Use)
If you are the only person using the app, or you can control the user's environment (e.g., a dedicated display), you can use a browser extension like uBlock Origin or Custom JavaScript for websites to inject CSS.
Use this CSS to hide the banner: #warning display: none !important; . 🛠️ Comparison of Methods Difficulty iFrame Embedding Public-facing apps/websites Google Sites Internal or team-based tools Workspace Account Professional/Commercial use Browser Extension Personal use or dedicated kiosks 💡 Important Considerations
Security Verification: For a permanent, "official" removal without workarounds, you must associate your script with a Google Cloud Project and go through the OAuth verification process. This typically requires a verified domain and a privacy policy.
Domain Restrictions: If you use a Google Workspace account, the banner will not appear for other users within the same domain.
Terms of Service: Ensure your app complies with Google's commercial use rules if you are monetizing the service.
⚠️ Note: Standard CSS within your HtmlService code (like style="display:none") will not work because the banner is generated outside of your app's body tag in a parent iFrame controlled by Google.
If you'd like to try the iFrame method, I can provide the specific code snippets for your index.html and code.gs files. Is there any way to remove the banner? : r/GoogleAppsScript
For testing purposes, you can hide the warning via a browser user script, but this only hides it visually and does not remove the underlying security notice. Use only for personal debugging.
Using Tampermonkey (advanced):
// ==UserScript==
// @name Remove Apps Script Warning
// @match https://script.google.com/*
// @match https://*.googleusercontent.com/*
// ==/UserScript==
setTimeout(() =>
let warning = document.querySelector('.warning-banner');
if(warning) warning.style.display = 'none';
, 2000);
Note: This does not remove the warning for other users—only on your machine.
1. Deceptive Marketing Tactics The phrase itself is designed to look like a technical notification or a watermark. However, Google Apps Script is a legitimate coding platform used to automate tasks within Google Workspace (like Sheets, Docs, and Gmail). Google does not watermark user creations with this specific text, nor does it charge a fee to remove such a watermark.
2. The "Phishing" Trap Tools displaying this message are almost always phishing bots.
3. False Promises of "Free" Services The inclusion of the word "free" in the prompt is a hook. It suggests that the service is usually paid but is being offered to you for free. In the context of "Google Apps Script," this is a lie. Legitimate Google Apps Script developers do not monetize their scripts via "watermark removal fees."
4. Lack of Support and Transparency If you try to contact the creator to "remove" the application or the watermark, you will typically find:
Google does not provide a checkbox or setting to hide that line. The message is tied directly to your account type.
To remove the “created by a Google Apps Script user – Free” message, you must:
Upgrade to a Google Workspace account (formerly G Suite).
A standard personal Gmail account (@gmail.com) will always show the banner. A Workspace account (@yourcompany.com) will not.
Verify your domain and publish as an internal app.
Once your Workspace account is active, redeploy your script. The message disappears automatically because Google now treats the app as coming from a verified organization.
Important: You still don’t need to pay for a Google Cloud verification badge ($25–$5,000+). That separate process is for removing the “unverified app” consent screen, not the “created by a user” footer.
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.
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, 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.
The light-blue warning banner stating "This application was created by a Google Apps Script user" is a security feature automatically added by Google to all web apps deployed via Apps Script
. There is no official "button" to turn it off for free consumer accounts, but you can bypass or hide it using these methods: Google Issue Tracker 1. Embed in a Website or Google Site The most common legitimate way to remove the banner is by your web app URL into another page. Google Sites: When you embed a script into a Google Site , the banner is typically suppressed for users. External Iframe: You can host a simple HTML page on a platform like GitHub Pages and use an
to load your Apps Script URL. This often hides the banner, though it may not work if your app requires a Google Account login. 2. Google Workspace (Business/Education) If you are part of a Google Workspace organization: The banner is to other users within the same domain.
For external users, the only way to remove it is by publishing the script as a verified Google Workspace Add-on , which requires a more complex review process. 3. Use a Browser Extension (Personal Use Only)
If you only want to remove the banner for yourself or on a specific display (like a public kiosk), you can use a browser extension to hide the element: Custom CSS/JS Extensions: Use tools like uBlock Origin
or a custom JavaScript injector to set the banner's display style to Example Script:
The banner often uses a specific ID or class that can be targeted with: document.getElementById('warning').style.display = 'none'; 4. Technical Workarounds Self-Hosting Content: Instead of using HtmlService.createHtmlOutput()
, you can host your front-end content (HTML/CSS/JS) on a standard web host and use the Apps Script only as a back-end API (receiving requests). This avoids the Google-hosted UI entirely. Important Note:
Google includes this banner as a security precaution to warn users that the script is not an official Google product and may access their data. iframe embed to bypass this banner?
To remove the message "This application was created by a Google Apps Script user" (or "This application was created by another user, not by Google") from your web app, you should understand that this is a security feature designed to protect users from phishing or malicious scripts .
While there is no "free" button to toggle this off, here are the most effective ways to manage or remove it: 1. The Official Professional Route (Verified Publisher)
The most "correct" way to remove the banner for all users is to have your application verified by Google. Once verified, the banner typically disappears because the publisher is now trusted .
Create a GCP Project: You must associate your Apps Script project with a standard Google Cloud Platform (GCP) project .
Request Verification: Submit your app for OAuth verification through the Google Cloud Console. This process can take several weeks and may require identifying yourself (which often requires a paid Workspace account) . 2. The Browser-Side "Fix" (For Personal Use)
If you only want to hide the banner for yourself or a small group of users who are willing to install an extension, you can use a browser-based CSS injector .
Use a Browser Extension: Install an extension like Custom JavaScript for websites or Tampermonkey.
Inject CSS: Use the following code to hide the banner's container: javascript document.getElementById('warning').style.display = 'none'; Use code with caution. Copied to clipboard
Note: This only works for users who have the extension active . 3. Alternative Hosting (Avoiding the Apps Script Domain)
If you want a professional look without the banner, you can move your front-end away from script.google.com.
Embed via iFrame (Partial Success): 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 .
Use a Front-End Framework: Host your UI on a free platform like GitHub Pages or Netlify and use the Google Apps Script purely as a Backend API (via doGet or doPost). This completely bypasses the Apps Script web app UI and its associated banners . 4. Configuration Check (Workspace Users)
If you are part of a Google Workspace (business or education), ensure you are deploying the app with the correct settings. Execute As: Set this to "Me" (your admin/account).
Who has access: Set this to "Anyone within [Your Domain]" rather than "Anyone" . In some organizational settings, this can minimize the severity of the warning banner. Summary of Options: Verification Free / Time Intensive Professional, public-facing apps . Browser Extension Private internal tools or personal dashboards . Separate Hosting Free (GitHub/Netlify) Developers who want a fully custom UI .
Are you building this app for public use or for private/internal tasks?