Remove This Application Was Created By A Google Apps Script User |verified|
Abstract
Google Apps Script provides a powerful low-code platform for extending Google Workspace functionality. However, scripts deployed as web apps or add-ons display a persistent attribution footer: “This application was created by a Google Apps Script user.” This paper examines the origin, purpose, and technical limitations of removing this notice. It demonstrates that while the attribution cannot be eliminated via native platform settings, developers can implement three legitimate workarounds: publishing as a Google Workspace Marketplace add-on, using an HTML proxy with URL masking, or embedding the app within a Google Site. Each method is analyzed for compliance, complexity, and user experience impact.
Do you have a website where you could potentially embed the tool? Abstract Google Apps Script provides a powerful low-code
Configure app manifest and project properties In GCP, navigate to APIs & Services >
Step 2: Configure the OAuth consent screen
- In GCP, navigate to APIs & Services > OAuth consent screen.
- Choose Internal (this is critical). External users cannot use Internal apps.
- Fill in the app name, user support email, and developer contact.
- Add the sensitive scopes your script requires (e.g., Drive, Gmail).
- Save and continue.
If you only need to hide the banner for yourself (e.g., on a public display or TV), you can use browser-based tools: If you only need to hide the banner for yourself (e
Below that, it typically reads: “This app isn't verified. Google hasn't verified this app for Google Workspace. Only proceed if you know and trust the developer.”
4.2 HTML Proxy with Domain Masking
This method removes the visible footer by masking the GAS URL behind your own domain using a reverse proxy.