In this fun coding tutorial, I'll show you how I hacked the Google Chrome offline dino game using simple JavaScript! 🦖💻 Watch this before you play, and impress your friends with secret tricks like infinite score, invincibility, and super speed mode — all using just your browser's developer tools.
IMPORTANT DISCLAIMER
This is for educational and entertainment purposes only — no real hacking involved. All done in your own browser, safely.
In this video, you'll learn:
How to open Chrome developer console
How to control the dino with code
Fun hacks like auto-jump, god mode, and more
A cool way to learn JavaScript while having fun!
Example Code from the Video:
// Activate God Mode (invincibility)
Runner.prototype.gameOver = function() {};
// Set super speed
Runner.instance_.currentSpeed = 999;
// Auto-jump over obstacles
setInterval(function() {
Runner.instance_.tRex.startJump(10);
}, 300);
Runner.prototype.gameOver = function() {};
// Set super speed
Runner.instance_.currentSpeed = 999;
// Auto-jump over obstacles
setInterval(function() {
Runner.instance_.tRex.startJump(10);
}, 300);
No software needed! Just your browser and curiosity. For more cool coding tutorials and fun tech tricks, check out our JavaScript Tricks playlist.