您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
it will clear your data kinda = kinda new account?
// ==UserScript== // @name Bloxd Account Generator (Reset) // @namespace http://tampermonkey.net/ // @version 1.0 // @author Jhonny-The // @description it will clear your data kinda = kinda new account? // @icon https://www.svgrepo.com/svg/343263/reset // @match https://bloxd.io/* // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; const box = document.createElement('div'); box.style.position = 'fixed'; box.style.top = '50px'; box.style.right = '20px'; box.style.background = '#222'; box.style.color = '#fff'; box.style.padding = '10px'; box.style.borderRadius = '8px'; box.style.boxShadow = '0 0 10px rgba(0,0,0,0.5)'; box.style.zIndex = '9999'; box.style.fontFamily = 'sans-serif'; const title = document.createElement('div'); title.innerText = '🔧 Guest Account Generator'; title.style.marginBottom = '10px'; box.appendChild(title); const btn = document.createElement('button'); btn.innerText = 'Create New Guest Account'; btn.style.padding = '6px 12px'; btn.style.cursor = 'pointer'; btn.onclick = () => { localStorage.clear(); document.cookie.split(";").forEach(c => { document.cookie = c .replace(/^ +/, "") .replace(/=.*/, "=;expires=" + new Date(0).toUTCString() + ";path=/"); }); alert("✅ Guest account reset.\nPage will now reload."); location.reload(); }; box.appendChild(btn); // Append to page document.body.appendChild(box); })();