您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A way to find a user on PixelPlace. Just enter their username in the textbox on the bottom of your screen and press the Find User button. [NOTE] This script is completely useless and made out of boredom.
// ==UserScript== // @name PixelPlace User Finder // @namespace http://tampermonkey.net/ // @version 0.2 // @description A way to find a user on PixelPlace. Just enter their username in the textbox on the bottom of your screen and press the Find User button. [NOTE] This script is completely useless and made out of boredom. // @author PeanutTale // @match https://pixelplace.io/* // @icon https://www.google.com/s2/favicons?sz=64&domain=pixelplace.io // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var textBox = document.createElement('input'); textBox.type = 'text'; textBox.style.position = 'fixed'; textBox.style.bottom = '0'; textBox.style.left = '50%'; textBox.style.marginBottom = '10px'; textBox.style.transform = 'translateX(-50%)'; textBox.style.height = '50px'; textBox.style.border = '1px solid black'; textBox.style.backgroundColor = '#ccc'; textBox.style.borderRadius = '5px'; document.body.appendChild(textBox); var button = document.createElement('button'); button.innerHTML = 'Find User'; button.style.position = 'fixed'; button.style.bottom = '0'; button.style.left = '57%'; button.style.transform = 'translateX(-50%)'; button.style.marginLeft = '10px'; button.onclick = function() { var url = window.location.href; var urlParts = url.split('#'); var newUrl = 'https://pixelplace.io/7-pixels-world-war' + '#user=' + textBox.value; window.location.href = newUrl; location.reload(); } document.body.appendChild(button); if (window.location.href == 'https://pixelplace.io/forums/') { document.body.removeChild(button); document.body.removeChild(textBox); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址