您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Supreme// @author TheSupremeHackerr
当前为
// ==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);