GAS Web Apps - Warning Bar Remover

2/20/2025, 4:21:38 AM Removes the pesky warning bar from a GAS Web App

目前為 2025-02-24 提交的版本,檢視 最新版本

// ==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")
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址