RANDOM JS THING SOURCE CODE



javascript:(function()%7B var htmlContent = %60%2520
%14%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0 L%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0 More %C2%A0%C2%A0%C2%A0%C2%A0%C2%A0 %C2%A0%C2%A0%C2%A0%C2%A0%C2%A0 %C2%A0%C2%A0%C2%A0%C2%A0%C2%A0
%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0

Scripts

%60; var minimized = false; var minimizedConsole = null; function minimizeConsole() %7B if (!minimized) %7B minimizedConsole = document.getElementById('iframeContainer').cloneNode(true); minimizedConsole.style.position = 'fixed'; minimizedConsole.style.bottom = '20px'; minimizedConsole.style.right = '20px'; minimizedConsole.style.backgroundColor = 'black'; minimizedConsole.style.color = 'red'; minimizedConsole.style.padding = '10px'; minimizedConsole.style.borderRadius = '5px'; minimizedConsole.innerHTML = 'Restore'; minimizedConsole.id = 'minimizedConsole'; document.body.appendChild(minimizedConsole); document.getElementById('iframeContainer').style.display = 'none'; document.getElementById('minimizeBtn').innerHTML = '%14'; minimized = true; %7D else %7B document.getElementById('minimizedConsole').remove(); document.getElementById('iframeContainer').style.display = 'block'; minimized = false; %7D %7D function toggleDrag() %7B var stopDragBtn = document.getElementById('stopDragBtn'); if (stopDragBtn.style.display === 'none') %7B stopDragBtn.style.display = 'block'; document.getElementById('iframeContainer').style.cursor = 'move'; document.body.style.cursor = 'move'; document.body.addEventListener('mousemove', dragMenu); %7D else %7B stopDrag(); %7D %7D function stopDrag() %7B var stopDragBtn = document.getElementById('stopDragBtn'); stopDragBtn.style.display = 'none'; document.getElementById('iframeContainer').style.cursor = 'default'; document.body.style.cursor = 'default'; document.body.removeEventListener('mousemove', dragMenu); %7D function dragMenu(event) %7B var moreBtn = document.getElementById('moreBtn'); moreBtn.style.left = event.clientX + 'px'; moreBtn.style.top = event.clientY + 'px'; %7D document.body.insertAdjacentHTML('beforeend', htmlContent); var iframeContainer = document.getElementById('iframeContainer'); iframeContainer.style.fontFamily = 'monospace'; iframeContainer.style.position = "fixed"; iframeContainer.style.top = "50px"; iframeContainer.style.left = "50px"; iframeContainer.style.zIndex = "9999"; iframeContainer.style.backgroundColor = "black"; iframeContainer.style.color = "red"; iframeContainer.style.border = "1px solid black"; var isDragging = false; var offsetX, offsetY; function startDrag(e) %7B isDragging = true; offsetX = e.clientX - iframeContainer.getBoundingClientRect().left; offsetY = e.clientY - iframeContainer.getBoundingClientRect().top; %7D function endDrag() %7B isDragging = false; %7D function drag(e) %7B if (isDragging) %7B var x = e.clientX - offsetX; var y = e.clientY - offsetY; iframeContainer.style.left = x + "px"; iframeContainer.style.top = y + "px"; %7D %7D iframeContainer.addEventListener("mousedown", startDrag); iframeContainer.addEventListener("mouseup", endDrag); iframeContainer.addEventListener("mousemove", drag); document.getElementById('minimizeBtn').addEventListener('click', minimizeConsole); document.getElementById('closeBtn').addEventListener('click', function() %7B document.body.removeChild(iframeContainer); %7D); document.getElementById('executeBtn').addEventListener('click', executeCode); function executeCode() %7B var userCode = document.getElementById('codeInput').value; try %7B var result = eval(userCode); alert('Execution result: ' + result); %7D catch (error) %7B alert('Error during execution: ' + error.message); %7D %7D document.getElementById('fontSelector').addEventListener('change', function() %7B var selectedFont = this.value; document.body.style.fontFamily = selectedFont; %7D); document.getElementById('increaseFontSizeBtn').addEventListener('click', function() %7B changeFontSize(2); %7D); document.getElementById('decreaseFontSizeBtn').addEventListener('click', function() %7B changeFontSize(-2); %7D); document.getElementById('colorPicker').addEventListener('change', function() %7B var selectedColor = this.value; document.body.style.color = selectedColor; %7D); document.getElementById('zoomInBtn').addEventListener('click', function() %7B changeZoom(0.1); %7D); document.getElementById('zoomOutBtn').addEventListener('click', function() %7B changeZoom(-0.1); %7D); document.getElementById('moreBtn').addEventListener('click', toggleDrag); document.getElementById('stopDragBtn').addEventListener('click', stopDrag); document.getElementById('spinPageBtn').addEventListener('click', function() %7B document.body.style.transform = 'rotate(360deg)'; %7D); document.getElementById('rainbowBtn').addEventListener('click', function() %7B setInterval(function() %7B var hue = Math.floor(Math.random() * 360); document.body.style.backgroundColor = 'hsl(' + hue + ', 100%25, 50%25)'; %7D, 100); %7D); document.getElementById('invertBtn').addEventListener('click', function() %7B if (document.body.style.filter === 'invert(100%25)') %7B document.body.style.filter = 'none'; %7D else %7B document.body.style.filter = 'invert(100%25)'; %7D %7D); document.getElementById('zoom500Btn').addEventListener('click', function() %7B document.body.style.zoom = '500%25'; %7D); document.getElementById('normalZoomBtn').addEventListener('click', function() %7B document.body.style.zoom = '100%25'; %7D); document.getElementById('zoom25Btn').addEventListener('click', function() %7B document.body.style.zoom = '25%25'; %7D); document.getElementById('crashBrowserBtn').addEventListener('click', function() %7B for (;;) %7B alert('Crash Browser!'); %7D %7D); document.getElementById('openPageBtn').addEventListener('click', function() %7B window.open(location.href); %7D); document.getElementById('infiniteAlertBtn').addEventListener('click', function() %7B setInterval(function() %7B alert('Infinite Alert!'); %7D, 1000); %7D); document.getElementById('getDunkedOnBtn').addEventListener('click', function() %7B var boneEmoji = String.fromCodePoint(0x1F9AE); var boneStr = ''; for (var i = 0; i < 1000; i++) %7B boneStr += boneEmoji; %7D document.body.innerHTML = boneStr; %7D); function changeFontSize(delta) %7B var currentSize = parseFloat(window.getComputedStyle(document.body).fontSize); document.body.style.fontSize = (currentSize + delta) + 'px'; %7D function changeZoom(delta) %7B var currentZoom = parseFloat(document.body.style.zoom %7C%7C 1); document.body.style.zoom = currentZoom + delta; %7D %7D)();