Remove This Application Was Created By A Google Apps Script User Free [new] May 2026
How to Remove “This Application Was Created by a Google Apps Script User” (Free Methods)
If you have landed on this page, you are likely staring at a frustrating pop-up screen in your Google Drive or Google Workspace account. The warning reads: “This application was created by a Google Apps Script user. It is not a Google application. If you decide to allow access, the developer will not be liable for any loss or damage.”
This message can be alarming, confusing, and—let’s face it—annoying. Many users want to remove this message entirely, often believing it indicates a virus or a poorly built tool. The good news is that you can remove or bypass this warning, and you can do it for free.
In this comprehensive guide, we will explain what this message actually means, why Google shows it, and step-by-step how to remove it permanently without paying for expensive third-party "cleaners" or "uninstallers."
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.
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.
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 How to Remove “This Application Was Created by
. 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?
Step 3: Submit for verification
If your app uses sensitive scopes and will have >100 users, submit for Google verification:
- Go to OAuth consent screen > Submit for verification
- Provide a video, privacy policy, and terms of service
- Wait for Google’s review (3–5 business days)
Once verified, the scary message disappears and users see your app name and branding.
Final Verdict
Yes, you can remove “This application was created by a Google Apps Script user – Free.”
No, there’s no secret code or CSS hack to hide it permanently.
The real solution is a Google Workspace account – and for anyone serious about building tools on Google’s ecosystem, you probably should have one anyway.
Stop looking like a hobbyist. Upgrade, redeploy, and watch that message disappear.
Have you successfully removed the banner? Still stuck? Drop a comment below – I help people migrate scripts to Workspace accounts regularly. Link script to a GCP project
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.
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 If you want, tell me whether this is
" is a security banner automatically added by Google to web apps deployed via Google Apps Script (GAS). It serves as a warning that the application is not officially created or verified by Google. Can it be removed for free? no official "free" setting
within Google Apps Script to toggle this banner off. However, there are specific deployment methods and workarounds that can hide or eliminate it. Ways to Eliminate the Banner Use a Google Workspace Organization Account The banner is generally
to other users within the same Google Workspace domain as the script owner.
If you deploy the app for "Internal" use within an organization, members will not see the message. Embed in Google Sites If you embed your Apps Script web app as a gadget within a Google Site , the banner is typically hidden from view. Publish as a Workspace Add-on Developing and publishing your script as a verified Google Workspace Add-on
removes the top-level banner, as the code runs within a sidebar or dialog instead of a standalone web app page. Client-Side Workarounds (Visual Only)
These methods do not remove the banner for all visitors but can hide it on your own browser or specific displays (like a public dashboard): Browser Extensions : Using a tool like Custom JavaScript for websites
or a script manager, you can inject a CSS rule to hide the element: document.getElementById('warning').style.display = 'none'; Dedicated Plugins
: There are community-built browser plugins specifically designed to detect and remove this iframe message automatically. Why the Banner Exists Google implements this banner to prevent
and malicious use. Because Apps Script allows anyone to create a functional web page for free, the banner ensures visitors know they are interacting with a third-party script rather than an official Google service. to hide this 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 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
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.
Removing "This application was created by a Google Apps Script user" from a Google Apps Script Project
When you create a Google Apps Script project, it automatically adds a message to the project's UI, stating "This application was created by a Google Apps Script user." While this message is a good indication that the project was created using Google Apps Script, you might want to remove it for aesthetic or professional reasons. In this report, we'll explore how to remove this message from your Google Apps Script project.
Understanding the Message
The message "This application was created by a Google Apps Script user" is a default message added by Google Apps Script to all projects created using the platform. This message is displayed at the top of the project's UI and serves as a indicator that the project was built using Google Apps Script.
Removing the Message
To remove the message, you need to use the setTitle method of the HtmlService class. Here's an example code snippet that removes the message:
function doGet()
var html = HtmlService.createHtmlOutputFromFile('index');
html.setTitle('Your Application Title'); // Set your application title here
return html;
In the code snippet above, replace 'Your Application Title' with your desired application title. By setting a custom title using the setTitle method, the default message "This application was created by a Google Apps Script user" will be replaced with your custom title.
Additional Steps
If you want to completely remove the message and not replace it with a custom title, you can use the following approach:
- Open your Google Apps Script project.
- Click on the "Deploy" button in the top right corner of the editor.
- Select "New deployment".
- Choose "Web App" as the deployment type.
- In the "Web App" settings, uncheck the box next to "Display a 'This application was created by a Google Apps Script user' message".
By following these steps, you can remove the message from your Google Apps Script project.
Conclusion
Removing the "This application was created by a Google Apps Script user" message from a Google Apps Script project is a straightforward process. By using the setTitle method or adjusting the deployment settings, you can easily remove or replace the message with a custom title. This report provides a step-by-step guide on how to remove the message, giving you more control over the UI of your Google Apps Script projects.
Recommendations
- Use a custom title that reflects your application's name or purpose.
- Consider adding a custom logo or branding to your application to give it a more professional look.
- If you're deploying your application to a wider audience, consider removing the message to provide a more seamless user experience.
Troubleshooting
- If you've followed the steps above and the message still appears, ensure that you've saved your changes and redeployed your application.
- If you're using a custom domain or URL for your application, ensure that the message is not being cached by your browser or server.
Common Myths About Removing This Warning (Debunked)
Myth 1: You can remove it by clearing your browser cache. False. The warning is server-side, generated by Google’s OAuth system. Cache clearing has no effect.
Myth 2: Paying a “Google Apps Script cleanup service” removes it faster. False. These services are scams. Only Google can approve or remove the warning via verification.
Myth 3: Uninstalling and reinstalling the script removes the warning. False. The warning is tied to the script’s verification status, not your local installation.
Myth 4: Using a VPN or incognito mode removes the message. False. The message is attached to the OAuth consent screen, not your IP address or browser privacy settings.
2) Publish properly (web app / add-on)
- Web app: Deploy → New deployment → Select “Web app” → choose the correct “Execute as” and “Who has access.” Use a GCP-linked project with completed OAuth consent.
- Add-on: Follow the add-on publication flow (GCP project, OAuth consent, then publish to Marketplace or G Suite Marketplace). Marketplace-published add-ons show your app name and developer info instead of the generic message.
Short Answer: Yes, with limitations.
- Free methods work if you are the sole user or within a Google Workspace domain with admin rights.
- For public apps used by strangers, free removal is impossible—you must pay for Google’s verification ($25–$100 one-time fee as of 2025).
But if your goal is to remove the message for your own use or within a small team, read on.
Method 5: What If the Script Is Malicious? (Hard Removal)
Sometimes, the application asking for permission is from an unknown or suspicious user. If you suspect foul play, “remove” takes on a different meaning: you need to completely scrub it from your Google account.
Free emergency removal steps:
- Go to myaccount.google.com/permissions.
- Under “Third-party apps with account access,” locate the suspicious app.
- Click “REMOVE ACCESS” .
- Next, go to drive.google.com.
- In the search bar, type:
type:script - Delete any unknown script files.
- Check your Google Sheets for unknown custom functions or macros (Extensions > Apps Script > Delete projects you don’t recognize).
After completing these steps, the application is gone, and the warning will never return.
Method 3: Remove the Warning as a Developer (For Your Own Scripts)
This is the most common reason people search for this phrase. You built a script, you trust it, but the scary warning makes users hesitate. You want to remove the “created by a Google Apps Script user” warning from your own application.
The warning appears because your app is unverified. To remove it for all users, you must complete Google’s verification process. And yes, this can be done for free if you meet the requirements.