Remove This Application Was Created By A Google Apps Script User ~upd~ < 2027 >
If you are developing tools exclusively for corporate use within your own business, you can make the banner disappear naturally by managing deployment configurations. Open your code project in the Google Apps Script Editor . Click > New deployment .
A well‑known workaround is to on a page you control. This effectively hides the warning banner because the banner is part of the outer Google frame, and iframe restrictions prevent it from being displayed.
: Google will not show the banner to Google Workspace users who belong to the exact same organization domain as the script owner. Implementation Steps : If you are developing tools exclusively for corporate
location / proxy_pass https://script.google.com/macros/s/AKfycb.../exec; proxy_set_header Host script.google.com; sub_filter '<div class="footer-branding">' '</div><!-- removed -->'; sub_filter_once off; proxy_ssl_server_name on;
The notice “This application was created by a Google Apps Script user” cannot be removed directly from a standard script.google.com deployment without violating terms. However, three legitimate architectural alternatives exist: proxying with HTML rewriting, embedding in Google Sites, or publishing as a Marketplace add-on. Organizations requiring white-label solutions should consider proxy-based masking or enterprise licensing options. A well‑known workaround is to on a page you control
function removePaperFile() // Search for files named 'Paper' var files = DriveApp.getFilesByName('Paper');
When internal team members access the application, the consumer-facing warning banner will not render because the app stays within the organization's trusted boundary. proxy_set_header Host script.google.com
The warning has nothing to do with the title “This application was created by a Google Apps Script user.” Changing the script name or logo does nothing.
Method 1: Embed the Web App via an IFrame (Best for Public Websites)
It provides a white-label experience (on higher-tier plans). It removes the script-specific headers entirely. ⚠️ Important Limitations



