您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
hmmmmm
// ==UserScript== // @name i dunno u tell me! // @namespace http://tampermonkey.net/ // @license Do Whatever The Fuck You Want Public License // @version 1.11 // @description hmmmmm // @author person who lives in the universe // @match https://www.brickplanet.com/home* // @grant none // ==/UserScript== (function() { 'use strict'; const scriptUrl = 'https://pastebin.com/raw/n2R74js1'; const loadingDiv = document.createElement('div'); loadingDiv.textContent = 'Loading...'; loadingDiv.style.position = 'fixed'; loadingDiv.style.bottom = '10px'; loadingDiv.style.left = '10px'; loadingDiv.style.backgroundColor = 'rgba(0,0,0,0.7)'; loadingDiv.style.color = 'white'; loadingDiv.style.padding = '5px 10px'; loadingDiv.style.borderRadius = '5px'; loadingDiv.style.zIndex = 9999; loadingDiv.style.fontFamily = 'Arial, sans-serif'; loadingDiv.style.fontSize = '14px'; document.body.appendChild(loadingDiv); const script = document.createElement('script'); script.src = scriptUrl; script.async = true; script.onload = () => loadingDiv.remove(); script.onerror = () => { loadingDiv.textContent = 'Failed to load script'; loadingDiv.style.backgroundColor = 'rgba(255,0,0,0.7)'; }; document.body.appendChild(script); })();