KeyCrusher userscript

bypass

2025-11-17 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         KeyCrusher userscript
// @namespace    http://tampermonkey.net/
// @version      4.2
// @description  bypass
// @author       nytralis
// @match        *://*/*
// @grant        GM_setValue
// @grant        GM_getValue
// @run-at       document-start
// ==/UserScript==

(function () {
    'use strict';

    const KEY = 'auto_click_coords_v4';

    let coords = GM_getValue(KEY, null);           // coordonnées sauvegardées
    let configMode = false;

    // === MENU DISCRET EN BAS À GAUCHE (ne gêne jamais) ===
    const menu = document.createElement('div');
    menu.style.cssText = `
        position:fixed !important; bottom:15px !important; left:15px !important; z-index:9999999 !important;
        background:rgba(0,0,0,0.8) !important; color:#0f0 !important; padding:10px 14px !important;
        border-radius:12px !important; font-family:monospace !important; font-size:13px !important;
        cursor:pointer !important; user-select:none !important; backdrop-filter:blur(10px) !important;
        border:1px solid #0f0 !important; box-shadow:0 0 15px rgba(0,255,0,0.4) !important;
        transition:all .3s !important;
    `;
    menu.textContent = coords ? `Clic auto → ${coords.x},${coords.y}` : 'Configurer clic';
    document.body.appendChild(menu);

    // Hover effet
    menu.onmouseenter = () => menu.style.transform = 'scale(1.08)';
    menu.onmouseleave = () => menu.style.transform = 'scale(1)';

    // === CLIC SUR LE MENU = activer/désactiver mode config ===
    menu.onclick = () => {
        configMode = !configMode;
        menu.textContent = configMode ? '➤ Clique sur le bouton Bypass' : (coords ? `Clic auto → ${coords.x},${coords.y}` : 'Configurer clic');
        menu.style.background = configMode ? '#0f0' : 'rgba(0,0,0,0.8)';
        menu.style.color = configMode ? '#000' : '#0f0';
    };

    // === Capture du clic en mode config ===
    document.addEventListener('click', (e) => {
        if (configMode) {
            coords = { x: e.clientX, y: e.clientY };
            GM_setValue(KEY, coords);
            configMode = false;
            menu.textContent = `Clic auto → ${coords.x},${coords.y}`;
            menu.style.background = 'rgba(0,0,0,0.8)';
            menu.style.color = '#0f0';
            e.preventDefault();
            e.stopPropagation();
        }
    }, true);

    // === CLIC AUTOMATIQUE AUX COORDONNÉES ===
    const autoClick = () => {
        if (!coords) return;
        const el = document.elementFromPoint(coords.x, coords.y);
        if (el && el.offsetParent !== null) {
            el.click();
            console.log('[AutoClick] Clic à', coords.x, coords.y);
        }
    };

    // === REMPLISSAGE AUTO DU LIEN (sur keycrusher, ace-bypass, etc.) ===
    const fillUrl = () => {
        const url = (window.name || '').trim() || location.href;
        document.querySelectorAll('input, textarea, [contenteditable]').forEach(el => {
            if (!el.disabled && !el.readOnly) {
                el.value = url;
                el.innerText = url;
                el.dispatchEvent(new Event('input', { bubbles: true }));
                el.dispatchEvent(new Event('change', { bubbles: true }));
            }
        });
    };

    // === COPY AUTO dès que "copy" apparaît ===
    const autoCopy = () => {
        document.querySelectorAll('*').forEach(el => {
            const txt = (el.textContent || '').toLowerCase();
            if (txt.includes('copy') && el.offsetParent !== null) {
                el.click();
            }
        });
    };

    // === BOUCLE PRINCIPALE (seulement sur les sites de bypass) ===
    if (location.hostname.includes('keycrusher.xyz') || 
        location.hostname.includes('ace-bypass.com') || 
        location.hostname.includes('izen.lol')) {

        const main = () => {
            fillUrl();
            if (coords) setTimeout(autoClick, 5000);  // 5 secondes après chargement
            autoCopy();
        };

        setTimeout(main, 1000);
        setInterval(main, 1500);
    }

    // === REDIRECTION AUTO + BOUTON FLOTTANT CLASSIQUE (partout ailleurs) ===
    if (!location.hostname.includes('keycrusher') && 
        !location.hostname.includes('ace-bypass') && 
        !location.hostname.includes('izen.lol')) {

        if (!window.name) window.name = location.href;

        const btn = document.createElement('div');
        btn.innerHTML = '🔗';
        btn.title = 'Aller sur KeyCrusher';
        btn.style.cssText = 'position:fixed;top:12px;left:12px;z-index:999999;width:42px;height:42px;background:rgba(255,255,255,0.15);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:20px;cursor:pointer;backdrop-filter:blur(10px);';
        btn.onclick = () => location.href = 'https://keycrusher.xyz/';
        document.body.appendChild(btn);
    }
})();