This summons and Among Us Pal that bounces around like the DVD Logo
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){let speedMultiplier=localStorage.getItem('amogusSpeed')?parseFloat(localStorage.getItem(%27amogusSpeed%27)):1.0;speedMultiplier*=1.2;localStorage.setItem(%27amogusSpeed%27,speedMultiplier);let a=document.createElement(%27img%27);a.src=%27 https://static.wikia.nocookie.net/among-us-wiki/images/c/c7/Red_old_design.png/revision/latest?cb=20210307225556%27;a.style.position=%27fixed%27;a.style.width=%27100px%27;a.style.height=%27auto%27;a.style.zIndex=%279999%27;a.style.transition=%27transform 0.1s linear%27;document.body.appendChild(a);let x=Math.random()*(window.innerWidth-100),y=Math.random()*(window.innerHeight-100),xSpeed=3*speedMultiplier,ySpeed=3*speedMultiplier,angle=0;function move(){let w=window.innerWidth-100,h=window.innerHeight-100;x+=xSpeed;y+=ySpeed;angle+=10;if(x<=0||x>=w)xSpeed*=-1;if(y<=0||y>=h)ySpeed*=-1;a.style.left=x+%27px%27;a.style.top=y+%27px%27;a.style.transform=`rotate(${angle}deg)`;requestAnimationFrame(move)}move();})();
Flips the page upside down!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){document.body.style.transform='rotate(180deg)';})();
Shakes the page like an earthquake!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){ setInterval(()=>{document.body.style.transform=`translate(${Math.random()*10-5}px,${Math.random()*10-5}px)`;},100);})();
Blurs the screen at random amounts!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){ document.querySelectorAll('*').forEach(el=>{ el.style.transition='filter 0.5s ease-in-out'; setInterval(()=>{el.style.filter=`blur(${Math.random()*10}px)`;},500); });})();
Makes a bunch of Firework Emojis!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){setInterval(()=>{let e=document.createElement('div');e.innerText='🎆';e.style.position='fixed';e.style.left=Math.random()*window.innerWidth+'px';e.style.top=Math.random()*window.innerHeight+'px';e.style.fontSize='30px';e.style.opacity='1';e.style.transition='opacity 1s';document.body.appendChild(e);setTimeout(()=>{e.style.opacity='0';setTimeout(()=>e.remove(),1000);},1000);},200);})();
Makes every word BEEP
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){document.querySelectorAll('*').forEach(el=>{if(el.childNodes.length){el.childNodes.forEach(node=>{if(node.nodeType===3)node.nodeValue='BEEP';});}});})();
You spin me right 'round, baby, right 'round
Like a record, baby, right 'round, 'round, 'round
You spin me right 'round, baby, right 'round
Like a record, baby, right 'round, 'round, 'round
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){document.body.style.transition='transform 2s linear';setInterval(()=>{document.body.style.transform=`rotate(${Math.random()*360}deg)`;},2000);})();
!sdrow eht pilf
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){document.querySelectorAll('*').forEach(e=>{if(e.childNodes.length)e.childNodes.forEach(n=>{if(n.nodeType===3)n.nodeValue=n.nodeValue.split('').reverse().join('');});});})();
Exits the all unblocker pages!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:(function(){window.location='https://rb.gy/as80dy;})();
Opens Inspect Element!
Highlight the code below (Including the javascript: part) and drag it to your bookmark bar!
javascript:var firebug=document.createElement('script');firebug.setAttribute('src','https://luphoria.com/fbl/fbl/firebug-lite-debug.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);