larger message box in Google Script

larger message box in Google Script - alert message

  1. // ==UserScript==
  2. // @name larger message box in Google Script
  3. // @namespace english
  4. // @description larger message box in Google Script - alert message
  5. // @include http*://*script.google.com*
  6. // @version 1.5
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. // Main - Collapse the Greasy Fork镜像 Header
  12.  
  13. var style = document.createElement('style');
  14. style.type = 'text/css';
  15. style.innerHTML = ' /* \n */div.docs-butterbar-wrap{ font-size: 123%;font-family: "PT Mono"; /* \n */padding: 0;/* \n */top: -18px;/* \n */position: relative;/* \n */}/* \n *//* \n */.jfk-butterBar ,.jfk-butterBar-info ,.jfk-butterBar-shown/* \n */{padding: 1.8em 3.8em;}/* \n */ /* width *//*\n*/::-webkit-scrollbar {/*\n*/ min-width: 5px;/*\n*/}/*\n*//*\n*//* Track *//*\n*/::-webkit-scrollbar-track {/*\n*/ box-shadow: inset 0 0 5px grey; /*\n*/ border-radius: 3px;/*\n*/ background:#999/*\n*/}/*\n*/ /*\n*//* Handle *//*\n*/::-webkit-scrollbar-thumb {/*\n*/ background: #666; /*\n*/}/*\n*//*\n*//* Handle on hover *//*\n*/::-webkit-scrollbar-thumb:hover {/*\n*/ background: #444; /*\n*/} ';
  16. document.getElementsByTagName('head')[0].appendChild(style);

QingJ © 2025

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