Dark Nexus Arcade - Bookmarklets

miniyoutubeplayerv2

click code below to copy
javascript:(function(){var v=document.querySelector('video');if(v){v.requestPictureInPicture();}else{alert('❗ No video found on this page. Go to a YouTube video first.');}})();
miniyoutubeplayerv2

Open the current YouTube video in Picture-in-Picture mode.

Sniper

click code below to copy
javascript:for(var i=0;i<(document.getElementsByTagName('a')).length;i++){(document.getElementsByTagName('a')[i]).style.pointerEvents='none';}function handler(e){e=e||window.event;var target=e.target||e.srcElement;target.style.display='none';document.removeEventListener('click',handler,false);cursor('default');for(var i=0;i<(document.getElementsByTagName('a')).length;i++){(document.getElementsByTagName('a')[i]).style.pointerEvents='initial';}}document.addEventListener('click',handler,false);cursor('crosshair');function cursor(cur){document.body.style.cursor=cur;}
Sniper

Click any element to make it disappear. Useful for cleaning up cluttered pages.

Dino Game Hacks

click code below to copy
javascript:(function(){const p=document.createElement('div');p.style=`position:fixed;top:10px;right:10px;padding:15px;background:linear-gradient(135deg,#2e003e,#000428,#004e92);color:#fff;border-radius:10px;z-index:9999;box-shadow:0 0 10px rgba(0,0,0,0.5);font-family:sans-serif;`;document.body.appendChild(p);const title=document.createElement('div');title.innerText='Dino Settings';title.style.fontWeight='bold';title.style.marginBottom='8px';p.appendChild(title);const xBtn=document.createElement('button');xBtn.innerText='✖';xBtn.style=`position:absolute;top:5px;right:5px;background:#800080;color:#fff;border:none;border-radius:4px;padding:2px 6px;cursor:pointer;`;xBtn.onclick=()=>p.remove();p.appendChild(xBtn);const speedLabel=document.createElement('label');speedLabel.innerText='Speed (1-99999): ';p.appendChild(speedLabel);const speedInput=document.createElement('input');speedInput.type='number';speedInput.min='1';speedInput.max='99999';speedInput.value='5';speedInput.style='width:70px;margin-right:5px;';p.appendChild(speedInput);const collisionLabel=document.createElement('label');collisionLabel.innerText=' Collision (true/false): ';p.appendChild(collisionLabel);const collisionInput=document.createElement('input');collisionInput.type='text';collisionInput.value='true';collisionInput.style='width:50px;margin-right:5px;';p.appendChild(collisionInput);const applyBtn=document.createElement('button');applyBtn.innerText='Apply';applyBtn.style='background:#4b0082;color:#fff;border:none;border-radius:4px;padding:3px 8px;margin-left:5px;cursor:pointer;';p.appendChild(applyBtn);const r=window.Runner?window.Runner.prototype:null;if(!r){alert('Game not found!');return;}const origUpdate=r.update;r.update=function(){origUpdate.call(this);this.currentSpeed=parseInt(speedInput.value)||5;this.obstacleSpeed=this.currentSpeed;if(this.tRex){this.tRex.xSpeed=10+(this.currentSpeed*0.5);this.tRex.jumpSpeed=15+(this.currentSpeed*0.01);}if(this.obstacles&&collisionInput.value.toLowerCase()!=='false'){this.obstacles.forEach(o=>{o.x-=this.obstacleSpeed;});}r.checkCollision=()=>collisionInput.value.toLowerCase()==='true';r.gameOver=function(){if(collisionInput.value.toLowerCase()==='true'){console.log('Game Over triggered');}};};applyBtn.onclick=()=>alert('Settings applied!');})();
dino game hacks

Infinite health and super speed Dino Game hack with UI settings.