12 Best Browser Games That Work Without Internet

The wifi cuts out on the plane, the cafe router dies, the office VPN goes down. The browser is still right there — and so are a surprising number of games that don’t need a connection to keep working. The trick is knowing which ones cache fully on first load and which ones fall over the moment they lose the network. These twelve work offline, today, in any modern browser.
Key takeaways
- The Chrome Dino game is the most famous browser-games-no-internet option — it was literally designed for the offline screen.
- Games using a Service Worker or Progressive Web App (PWA) cache fully on first load and run offline forever.
- Pure single-page HTML/JS games (Cookie Clicker, Kittens Game) work offline once cached by your browser.
- Anything requiring multiplayer, ads, or live content (most modern aggregator sites) will fail offline.
- Load each game once with a connection — once the assets are cached, you’re set for later.
1. Chrome Dino (T-Rex Runner)
The original purpose-built offline game. Chrome added the T-Rex Runner in 2014 as an Easter egg on its “no internet” page; it has no network calls, no analytics, no leaderboards. You can also reach it any time by typing chrome://dino in the address bar — even online. It’s the most reliable offline browser game ever shipped because Google built it specifically not to need anything.
2. Cookie Clicker
The grand idle clicker works offline once it’s loaded. Open orteil.dashnet.org/cookieclicker with a connection, let the page fully load, then disconnect. The game keeps clicking, the grannies keep baking, and your save persists in localStorage. Coming back online lets it sync with cloud saves if you’ve linked an account.
3. 2048
The original 2048 by Gabriele Cirulli is a single HTML page. Once loaded, it runs entirely in your browser with no further requests. Disconnect from wifi, the game keeps working. Your high score lives in localStorage until you clear cookies.
4. A Dark Room
Doublespeak Games’ atmospheric incremental works offline after the first load. It’s a single-page, text-heavy game with minimal external assets. Load it once, walk away, and the survival narrative keeps unfolding even without a connection.
5. Kittens Game
Bloodrizer’s text-only colony sim is built to be lightweight. The entire game is one HTML page with all logic running client-side. Cached versions persist offline indefinitely, and the autosave system writes to localStorage every few seconds.
6. Trimps
Greensatellite’s idle empire builder is another one-page wonder. No assets to load beyond the initial page, no network calls during play. Save state lives entirely in your browser. If your tab survives a disconnection, Trimps survives with it.
7. Solitaire (Microsoft’s Browser Version)
Microsoft’s official Solitaire Collection has a web build that caches aggressively. Once loaded with a connection, the standard Klondike, Spider, FreeCell, and TriPeaks modes all play offline. Cloud-sync features need internet but the cards themselves don’t.
8. Sudoku (Various Sites)
Most Sudoku web apps generate puzzles client-side or cache a large library on first load. Sudoku.com, the NYT Mini, and the dozens of free clones all keep working offline if the page has fully loaded. Some sites also offer downloadable PDF puzzle packs if you anticipate a long flight.
9. Tetris (HTML5 Versions)
The official tetris.com web version requires a connection for leaderboards and ads, but the gameplay itself runs locally once loaded. Lighter clones like jstris.jezevec10.com (single-player Sprint mode) work offline after caching.
10. Universal Paperclips
Frank Lantz’s single-page incremental has no server-side dependencies during play. Open decisionproblem.com/paperclips, let it load, then go offline. The paperclip empire builds itself in pure client-side JavaScript.
11. Lichess Puzzles
Lichess’s open-source chess platform has a Progressive Web App mode that caches puzzle batches and the engine offline. Install the PWA (most browsers prompt with “Install Lichess” when you visit the site), then puzzle sessions work without a connection. Online play obviously needs internet, but training mode doesn’t.
12. Wordle (Yesterday’s Puzzle)
If you opened the NYT Wordle while online and didn’t refresh, the puzzle stays playable offline — the answer is loaded once when the page renders. You can finish today’s Wordle on a plane as long as you opened the tab before takeoff.
How “offline” actually works in a browser
Three mechanisms make games playable without internet:
- Browser cache. Once you load a page, the HTML, JavaScript, CSS, and image files sit in your browser’s cache. If the game’s logic runs entirely client-side, you can keep playing as long as the tab stays open — even with no network.
- Service Workers. A more advanced browser feature where the site itself tells your browser to keep specific files cached for offline use. Progressive Web Apps (PWAs) use Service Workers to make the experience feel native. Lichess and a handful of other games take advantage of this.
- LocalStorage. All the games above save your progress to your browser’s local storage, which is independent of network access. Your Cookie Clicker save isn’t on a server — it’s on your laptop.
The catch: closing the tab and reopening it offline only works if the browser has cached the page. Sometimes a refresh attempts to revalidate with the server and fails. If you anticipate offline play, load the page once online, then leave the tab open. Don’t refresh until you’re back online.
Games that look offline but aren’t
A few common picks fail offline despite appearing single-player:
- Most aggregator-hosted clones (CrazyGames, Poki, Y8) require ongoing connections for ads. The game’s logic might run locally but the ad SDK blocks gameplay if it can’t phone home.
- Slither.io and io games — multiplayer by definition. No connection, no game.
- Tetr.io — even its single-player modes require ongoing auth checks with the server.
- GeoGuessr — needs Street View, which is a Google Maps API call. Offline = no street to guess.
The Chrome Dino exception
The Chrome Dino game deserves special mention because Google designed it specifically for offline use. When your network drops in Chrome, the browser displays the “No internet” page, which contains the Dino game as an inline game. It’s the only game on this list that’s not just “playable” offline — it’s literally the offline screen.
You can also reach it any time by typing chrome://dino in the address bar, even with full internet. The game is open-source under BSD-3 license at github.com/wayou/t-rex-runner, which is why so many other sites (including this one) host their own copies. The original was added to Chrome in 2014 by designer Sebastien Gabriel.
For the full story on triggering the offline screen and playing the Dino in different ways, see our Chrome Dino offline walkthrough.
Frequently asked questions
How do I make sure a browser game will work offline?
Load the page once with a working connection. Wait for everything to render fully — the game’s title screen, the menus, any first-frame assets. Then disconnect and test. If the game still responds to input, it’s offline-ready. If you see a blank screen or “network error,” it needs ongoing connectivity.
Can I save my offline progress?
Yes, in most cases. Browser localStorage persists across sessions and survives a network disconnection. You’ll lose progress if you clear cookies, switch browsers, or use incognito mode (which wipes localStorage when the window closes).
Does the Chrome Dino game need internet?
No — it’s literally the offline game built into Chrome. Triggered automatically when your network drops, or accessible any time at chrome://dino. The version on this site is a faithful recreation that also runs entirely client-side.
Why do most “free browser games” sites fail offline?
Their revenue model depends on ads, and most ad networks require ongoing connections. Even if the game itself is single-player, the ad layer prevents play if it can’t authenticate. The games on this list either are ad-free or host their core logic independent of any ad SDK.
Can I download a browser game to play offline more reliably?
For most of these, yes — they’re open source. Universal Paperclips, Cookie Clicker, A Dark Room, and Kittens Game can be saved as full HTML pages (File → Save As in your browser) and run from a local file system indefinitely. Tetris and Sudoku have downloadable native apps.
When the wifi gives up, the games don’t have to
Offline browser games are one of the underrated wins of the modern web. Service Workers and localStorage mean any well-built single-page game can survive a disconnection. The most famous example is sitting in your browser right now — the T-Rex Runner that activates the moment your network dies. The rest of this list extends the same trick to a dozen genres. Cache once, play anywhere.








