2/20/2025, 4:21:38 AM Removes the pesky warning bar from a GAS Web App
当前为
// ==UserScript==
// @name GAS Web Apps - Warning Bar Remover
// @license MIT
// @namespace Violentmonkey Scripts
// @match https://script.google.com/macros*
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @version 1.0
// @author Bilbosaggings[2323763] | BillyBourbon
// @description 2/20/2025, 4:21:38 AM Removes the pesky warning bar from a GAS Web App
// ==/UserScript==
console.log("Removing Warning Bar")
$( window ).on("load", ()=>{
$(".warning-bar").remove()
console.log("Removed Warning Bar")
})