Bloxd Account Generator (Reset)

it will clear your data kinda = kinda new account?

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);
})();