TheWebCHanger

Supreme// @author TheSupremeHackerr

目前为 2025-02-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         TheWebCHanger
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Supreme// @author       TheSupremeHackerr
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function cambiarColores() {
        const colores = ['red', 'green', 'blue', 'yellow', 'purple', 'orange'];
        const elementos = document.querySelectorAll('*');

        setInterval(() => {
            elementos.forEach(elemento => {
                const colorAleatorio = colores[Math.floor(Math.random() * colores.length)];
                elemento.style.backgroundColor = colorAleatorio;
            });
        }, 500);
    }

    function discoConsole() {
        let colors = ['red', 'blue', 'green', 'yellow', 'purple', 'orange'];
        let colorIndex = 0;

        setInterval(() => {
            console.log('%c HACKEADO!!! AJAJAJJAJAJAJAJAJAJAJAJAJAJA', `color: ${colors[colorIndex]}; font-size: 20px`);
            colorIndex = (colorIndex + 1) % colors.length;
        }, 100);
    }

    function generarBSOD() {
        const bsod = document.createElement('div');
        bsod.style.position = 'fixed';
        bsod.style.top = '0';
        bsod.style.left = '0';
        bsod.style.width = '100vw';
        bsod.style.height = '100vh';
        bsod.style.backgroundImage = "url('https://upload.wikimedia.org/wikipedia/commons/f/f7/Windows_10_%26_11_BSOD_%28new_version%29.png')";
        bsod.style.backgroundSize = 'cover';
        bsod.style.backgroundPosition = 'center';
        bsod.style.zIndex = '9999';
        
        document.body.appendChild(bsod);
        
        setTimeout(() => {
            bsod.remove();
        }, 3000);
    }

    // Ejecutar todas las funciones
    discoConsole();
    cambiarColores();
    setTimeout(generarBSOD, 3000);
})();

setTimeout(generarBSOD, 3000);