How to Play the REAL Chrome Dino Game (2024)

If you don’t have an internet connection when you launch Chrome, you’ll get an error screen letting you know you’re not connected. Buried inside that screen is a Chrome easter egg—a super-simple game designed to be a throwback to the “prehistoric” times before wifi.

For an Easter egg, it’s been very successful. It has 270 million players, a figure many for-profit apps and games would kill for. It’s completely free to play, and in 2018, its developers were interviewed by the Google Press Officeand admitted they’d had to give enterprise developers a way to disable the game because “school kids—and even adults who were supposed to be working—really got into it.”

Whether you’ve played Chrome Dino before or you’re completely new to it, read on to find out how to find the game, play it to high scores, and get under the hood to tinker with it. Plus some other games you might like too.

First: Be wary of fake Dino games in search

Search for the Dino game in Google search and you’ll see more than a few options. Pages and pages of rips, replicas, and fan remakes. It looks like you could just take your pick. But in fact, it’s better to stay away from these ostensibly fan-made copies.

Some carry trackers you don’t want; their cookies might be collecting data you don’t want them to.

Some are stuffed with ads, not all legit. (You can minimize the effect with a Chrome ad blocker, but it’s best to just avoid third-party sites.)

Others contain genuine malicious code, or flashing pages full of links to sites that do. And even when none of that’s the case, they’re likely to be slow and glitchy. For some reason, they’re often not full-screen either.

It makes more sense to just use the normal Chrome Dino game.

Where to find the Dino game offline

Finding the Dino game in Chrome is easy. Open Chrome offline and you’ll get the error page showing you don’t have an internet connection:

How to Play the REAL Chrome Dino Game (1)

Press Space and the dinosaur in the top left of the screen will start running.

Where to find the Dino game online

The Dino game isn’t meant to be found online… or so most folks think. In fact, it’s easy to access online, and you don’t need to go to any sketchy third-party sites to play it either.

Open a new Chrome tab or window and type chrome://dino/ in your omnibar. Don’t put it in the search box of a Google search page or you’ll get a page full of third-party sites.

Hit return and you’ll be taken to the offline notification page you’d see if you’d opened Chrome with your wifi turned off. Don’t worry, you didn’t break your internet. This is just Chrome giving you access to the Dino game online via the usual start page. Press Space as usual and the game starts.

How to play the Dino game

The Chrome Dino game is very simple, difficult, and addictive. It’s an endless running game, like a straight-line version of Temple Run with no levels. There’s literally no end: get to the maximum possible score of 99,999 and the game simply resets itself.

You can’t change direction and you have no control over your speed. All you can do is jump and duck.

That’s plenty. The game starts out slow and simple. You’re running left to right, and occasionally there’s a cactus. Soon, these cacti start showing up more frequently, in troublesome clumps and different sizes. Press Space or the up arrow to jump over them.

A little later on, you’ll find out why you can also duck using the down arrow. In addition to cacti, there are bird-like pterodactyls that flit across the screen at various heights. Some can be jumped over; others can be ignored. Most people find it helps to duck some. It never gets complex—that’s the whole game. But it gets difficult.

You can pause play with the Alt button. The game goes into dark mode for 100 points after every multiple of 700 points.

Tips for getting a high score

Players suggest a few main methods to get higher scores. Some of the highest scores are from players who have hacked the game, which isn’t difficult to do. And others come from non-human players. A simple game like this is easy to build an AI to beat, so if you’d like, you can watch an AI play the game flawlessly for over 11 hours.

Here are the best tips we’ve found:

  • Act like the landscape elements are moving and you’re standing still. It’s easier to control where you are on the screen if you forget that you’re “running.”
  • Jump early, duck early.
  • Duck less. Most birds can be jumped, and lower-flying ones can be ignored.

Beyond that, it’s like most classic video games: a pure test of reflexive skill, like digital pinball. Practice, flow, and concentration deliver the high scores.

Or you could hack the game like everyone else, though it’s hard to see the point.

Chrome Dino cheats and hacks

We’re not talking about up-down-up-down-B-A-start here. These tips all require you to open Chrome Console.

Opening Console

Start on the No Internet page, whether because your internet really is off or because you typed chrome://dino/to get there. Right-click or CTRL-click anywhere and select inspect to open Chrome Dev Tools. Alternatively, type CTRL-Shift-Jon Windows, Linux, or Chromebook machines, or CTRL-Option-Jor CMD-Shift-Con a Mac, to open Dev tools.

Once it’s open, select the Console tab and you can alter the code that’s running in the Chrome window you have open.

The codes

Once you have Console ready, all you have to do is copy and paste some code into it.

Tweak your speed

To change the speed your dino runs at, paste this code:

Runner.instance_.setSpeed(1000)

Experiment with changing the number in brackets to set your speed at something you’re happy with.

Tweak how high you jump

To change how high the dino jumps, use this code:

Runner.instance_.tRex.setJumpVelocity(10)

Again, experiment with the number in brackets to find a jump that’s high enough to clear obstacles, but low enough to shave precious milliseconds off your reaction time.

Live forever

To make your dino cactus-proof, use this code. It’s in three parts, and you need to press Enter after each command.

First, copy and paste this code:

var original = Runner.prototype.gameOver

This gives you control over what happens when you hit the “game over” command in the original code. Now you can dictate what happens next.

Hit return, and paste this code:

Runner.prototype.gameOver = function(){}

This makes the “game over” function empty, so when you hit it, nothing happens.

That means there’s no way to stop the game, though. If you want to just get out, you can close the tab or window. If you want to stop the game and keep your high score, you can use this code:

Runner.prototype.gameOver = original

That puts everything back to how it was.

Other Chrome games you might enjoy

Chrome is light enough to compete with the fastest browsers, but it’s also versatile enough to be a kind of OS all to itself, even if you’re not actually using Chrome OS. That’s why the Chrome web store features games that run inside the browser, online or off. Some are free, others go for a small fee, but if you’re enjoying the Dino experience, it might be worth checking out one or two of these as well.

Some require you to sign up, and we strongly recommend at least using Chrome’s password managerif you don’t use anything more secure.

Tabagotchi

Chrome Dino is a game for wasting your time when your internet isn’t working. Tabagotchi is for the opposite. You might remember Tamagotchi—those digital pets that lived on a keyfob and had to be looked after if you didn’t want them to perish.

Tabagotchi is a Chrome extensionthat replaces the screen you see when you open a new tab with a digital pet whose health declines as you open more tabs, gamifying efficiency and productivity—in theory, anyway.

How to Play the REAL Chrome Dino Game (2)

Entanglement

Entanglement is a web app—a full program that runs inside Chrome. It started life as one of the default games that came with Chrome on installation. It’s a little like playing Snake with tiles: on a playing board, you add hexagonal tiles in an effort to make the longest line without running into a wall.

How to Play the REAL Chrome Dino Game (3)

Dark Orbit

Dark Orbit is a web app too. It’s best thought of as a browser-based version of No Man’s Sky: you start the game as a pilot of a spaceship in dark orbit, with systems damaged and resources scarce. Your job is to scavenge and rebuild. (Be warned that you’ll need Flash to use the game as it currently stands. We don’t know how that will change when Chrome deprecates support for Flash later this year.)

How to Play the REAL Chrome Dino Game (2024)

FAQs

How to Play the REAL Chrome Dino Game? ›

If your internet is down, just open Chrome. Or if you're already in Chrome, try to visit any web page. You'll see that little dinosaur next to its error message. Simply press the space bar (or up arrow) and the dino will start running.

How to play the Chrome Dino game? ›

To start up the game, players simply need to hit the spacebar, which will make the dinosaur run and hop over the cactuses that come into its way. If you're playing on your mobile device, you can just tap your thumb. Jumping over cactuses earns points, and failing to clear the jump gives players the dreaded “Game over.”

How do you play the real Dinosaur Game? ›

Dinosaur Game
  1. Jump to start a game.
  2. The object of the game is to run as far as possible. Enemies and obstacles will try to block your path.
  3. Use the space bar or up key on your keyboard to jump over them. The down key lets you crouch.
  4. On mobile, tab on the game area to jump.

What happens after 99999 in Chrome Dinosaur Game? ›

The maximum score the game gives you is 99999 before it resets back to 0. This will change the speed of the dinosaur to 6000.

How do I trigger the Google Dinosaur Game? ›

Press "Space" to jump your Dino and start the game.

What is the cheat code for dino game? ›

Chrome Dino Game Hacks
HackCode
SpeedRunner.instance_.setSpeed(speed)
JumpRunner.instance_.tRex.setJumpVelocity(jumping_height)
InvincibilityRunner.prototype.gameOver = function (){}
Jul 6, 2023

Is the Chrome Dino game endless? ›

There's literally no end: get to the maximum possible score of 99,999 and the game simply resets itself. You can't change direction and you have no control over your speed. All you can do is jump and duck.

What dinosaurs had 500 teeth? ›

Nigersaurus taqueti

This bizarre, long-necked dinosaur is characterized by its unusually broad, straight-edged muzzle tipped with more than 500 replaceable teeth. The original fossil skull of Nigersaurus is one of the first dinosaur skulls to be digitally reconstructed from CT scans.

Does Chrome Dino end? ›

The dinosaur game does not technically have an end, but the maximum score is 99,999 and the design team for the game said that it does stop working after you play the game for 17 million years strait- the same amount of time dinosaurs were on the Earth.

How to finish a dinosaur game? ›

The longer you hold the up arrow, the higher dino will jump. If you need to duck under something, press the down arrow. The longer you play, the faster dino runs/the ground moves. Once you crash into something, the game is over and you have to restart (your score resets, too).

How do I turn on the Dinosaur Game on my school Chromebook? ›

This t-rex icon is an Easter egg in Google Chrome, which is, in fact, a hidden runner game. You can start playing this dinosaur game by pressing the space bar key (for Chrome on desktop), or by simply tapping anywhere on the screen (for Chrome on mobile).

Is there an end to Chrome Dino game? ›

How to play the Dino game. The Chrome Dino game is very simple, difficult, and addictive. It's an endless running game, like a straight-line version of Temple Run with no levels. There's literally no end: get to the maximum possible score of 99,999 and the game simply resets itself.

Top Articles
Latest Posts
Article information

Author: Ms. Lucile Johns

Last Updated:

Views: 6245

Rating: 4 / 5 (61 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Ms. Lucile Johns

Birthday: 1999-11-16

Address: Suite 237 56046 Walsh Coves, West Enid, VT 46557

Phone: +59115435987187

Job: Education Supervisor

Hobby: Genealogy, Stone skipping, Skydiving, Nordic skating, Couponing, Coloring, Gardening

Introduction: My name is Ms. Lucile Johns, I am a successful, friendly, friendly, homely, adventurous, handsome, delightful person who loves writing and wants to share my knowledge and understanding with you.