He even tried writing a second script to "delete" the banner from the first one—a digital snake eating its own tail [1, 2].
You should never attempt to use CSS or JavaScript hacks (like DOM manipulation) to hide the Google footer programmatically. Google’s security headers often block such attempts, and more importantly, bypassing security notices can lead to your script being flagged for "Terms of Service" violations, resulting in the permanent suspension of your project or your entire Google account. He even tried writing a second script to
The most common free method to "remove" the banner is to hide it by embedding your web app into a separate website using an . The most common free method to "remove" the
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. If you don't want to manage external hosting,
If you don't want to manage external hosting, embedding the web app directly into a 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
If you have a (even the free legacy edition), you can publish the script internally without verification.
If you'd like to try the , 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