您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.1 // @author Bilbosaggings[2323763] | BillyBourbon // @description 2/20/2025, 4:21:38 AM Removes the pesky warning bar from a GAS Web App // ==/UserScript== (function (){ console.log("Removing Warning Bar"); window.addEventListener("load", () => { const warningBar = document.querySelector(".warning-bar"); if (warningBar) { warningBar.remove(); console.log("Removed Warning Bar"); } }); })()