Greasy Fork 支持简体中文。

GAS Web Apps - Warning Bar Remover

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

  1. // ==UserScript==
  2. // @name GAS Web Apps - Warning Bar Remover
  3. // @license MIT
  4. // @namespace Violentmonkey Scripts
  5. // @match https://script.google.com/macros*
  6. // @grant none
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
  8. // @version 1.1
  9. // @author Bilbosaggings[2323763] | BillyBourbon
  10. // @description 2/20/2025, 4:21:38 AM Removes the pesky warning bar from a GAS Web App
  11. // ==/UserScript==
  12. (function (){
  13. console.log("Removing Warning Bar");
  14. window.addEventListener("load", () => {
  15. const warningBar = document.querySelector(".warning-bar");
  16. if (warningBar) {
  17. warningBar.remove();
  18. console.log("Removed Warning Bar");
  19. }
  20. });
  21. })()