Edenfi Token Unlock

Extract and copy from localStorage

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Edenfi Token Unlock
// @namespace    https://edenfi.io/
// @version      1.0
// @author       Forest Army
// @description  Extract and copy from localStorage
// @match        https://waitlist.edenfi.io/*
// @license      MIT
// @grant        GM_setClipboard
// @run-at       document-end
// ==/UserScript==

(function () {
    'use strict';

    function createCopyButton(token) {
        const btn = document.createElement('button');
        btn.textContent = '📋 Copy edenfi token';
        btn.style.position = 'fixed';
        btn.style.top = '10px';
        btn.style.right = '10px';
        btn.style.zIndex = 9999;
        btn.style.padding = '10px';
        btn.style.background = '#4CAF50';
        btn.style.color = 'white';
        btn.style.border = 'none';
        btn.style.borderRadius = '5px';
        btn.style.cursor = 'pointer';

        btn.onclick = () => {
            GM_setClipboard(token);
            btn.textContent = '✅ Copied!';
            setTimeout(() => (btn.textContent = '📋 Copy edenfi_auth_token'), 2000);
        };

        document.body.appendChild(btn);
    }

    const token = localStorage.getItem('edenfi_auth_token');
    if (token) {
        console.log('edenfi_auth_token:', token);
        createCopyButton(token);
    } else {
        console.warn('edenfi_auth_token not found in localStorage');
    }
})();