您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Keep Rows Maximized; Neopets Hospital Volunteer Centre.
// ==UserScript== // @name Stay Open // @namespace https://github.com/Airazone // @version v1.1 // @description Keep Rows Maximized; Neopets Hospital Volunteer Centre. // @author Airazon // @match https://www.neopets.com/hospital/volunteer.phtml // @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com // @grant none // @license GNU GPLv3 // ==/UserScript== (function() { 'use strict'; document.getElementById('Act2Pane').className = 'vc-act maximize'; document.getElementById('Act3Pane').className = 'vc-act maximize'; const elements = document.querySelectorAll(".vc-fights"); elements.forEach(element => {element.style.height = "100%"; }); })();