您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
none
// ==UserScript== // @name pixelgalactic picture overlay // @namespace http://tampermonkey.net/ // @version V1.0 // @description none // @author kasp67 // @match https://pixelgalactic.fun/ // @icon https://www.google.com/s2/favicons?sz=64&domain=ngrok-free.app // @grant none // ==/UserScript== var square = document.createElement('div'); square.style.width = '200px'; square.style.height = '200px'; square.style.backgroundColor = 'white'; square.style.position = 'absolute'; square.style.top = '50%'; square.style.left = '50%'; square.style.transform = 'translate(-50%, -50%)'; square.style.textAlign = 'center'; var text = document.createElement('p'); text.innerText = 'Marko and Yaros are cocksuckers'; text.style.color = 'black'; text.style.fontSize = '24px'; text.style.fontWeight = 'bold'; square.appendChild(text); document.body.appendChild(square);