您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Square has a mostly useless element that takes up room for no reason on the bottom of most of their pages.... I myself had 0 issues at least so far. Do better Square.
// ==UserScript== // @name Square remove blank space at bottom of pages. // @namespace http://tampermonkey.net/ // @version 0.2 // @description Square has a mostly useless element that takes up room for no reason on the bottom of most of their pages.... I myself had 0 issues at least so far. Do better Square. // @author ChatGPT // @author NickTh3M4l4chi // @match https://*.squareup.com/dashboard/* // @grant none // ==/UserScript== (function() { 'use strict'; // Function to add custom CSS function addCustomCSS() { var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ` #market-icon-sprite { display: none !important; } .appointments-container .app-layout__content.appointments-full-height-layout.fullcalendar-upgrade-layout { height: calc(100vh - 5px) !important; padding: 15px 15px 0 15px !important; } `; document.head.appendChild(style); } // Add the custom CSS when the DOM is fully loaded window.addEventListener('load', function() { addCustomCSS(); }, false); })();