您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Simple scriptlet that adds a "Try again" button after diving down the hole to reload the page.
当前为
// ==UserScript== // @name Symol Hole Reload Button // @namespace https://gf.qytechs.cn/en/scripts/444939-symol-hole-reload-button // @version 0.1 // @description Simple scriptlet that adds a "Try again" button after diving down the hole to reload the page. // @author Piotr Kardovsky // @match http*://www.neopets.com/medieval/symolhole.phtml // @icon http://www.neopets.com/favicon.ico // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let smg = document.querySelector('.symolhole_content'); let enb = document.getElementById('enterhole'); let btn = document.createElement('button'); btn.classList.add('button-default__2020', 'button-red__2020', 'btn-single__2020'); btn.innerText = "TRY AGAIN!"; btn.style.display = 'none'; btn.addEventListener('click', () => { window.location.reload(); }); smg.append(btn) enb.addEventListener('click', () => {setTimeout(() => {btn.style.display = 'block'}, 6600)}); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址