One wheel, every screen you own
You need to pick a name, settle a debate, or assign a task, and you want the answer in ten seconds, not ten minutes. Spin the Wheel is a browser-based tool, not a native app, so it works the exact same way whether you're holding a phone, propping up an iPad, or sitting at a school-issued Chromebook, a Windows desktop, or a Mac. No App Store, no Play Store, no extension, no admin permissions, and nothing that a district IT policy or a locked-down work laptop would need to approve.
This guide covers every major device in one place, with the steps, quirks, and best features specific to each, so you can jump to whichever one you're actually holding right now.
๐ Key Takeaways
- No app or install needed on any platform. Open a browser and go to spin-the-wheel.tech.
- Every spin uses
crypto.getRandomValues(), the Web Cryptography API standard, identical across every device and browser engine. - Every platform can install it as a standalone icon: home screen (iPhone/Android), shelf (Chromebook), taskbar (Windows), or Dock (Mac).
- Every platform can mirror the wheel to a bigger screen: AirPlay, Chromecast, Cast, or Miracast.
- A built-in Auto Spin ร10,000 test verifies fairness in under a second, on any device.
How to use Spin the Wheel โ step by step, by device
The core flow never changes: open a browser, add entries, tap or click Spin. The differences below are just which browser opens by default and how you save a shortcut on each platform.
๐ฑ On iPhone
๐ฑ iPhoneOpen Safari or Chrome
Both work. Safari is the iPhone default and loads the site with no extra steps.
Go to spin-the-wheel.tech
Type the address and tap Go. No splash screen, no sign-in prompt, no cookie banner.
Add your entries
Tap the text area and type names or options, one per line. The wheel updates as you type.
Tap Spin
Tap Remove & Spin Again for sequential picks with no repeat winner.
Pro tip: tap Share in Safari, then Add to Home Screen, for a full-screen icon with no browser toolbar.
๐ค On Android
๐ค AndroidOpen Chrome, Firefox, or Samsung Internet
All three support the Web Cryptography API the wheel depends on.
Go to spin-the-wheel.tech
The page is lightweight and loads even on a slow mobile connection.
Add your entries
Tap the text area and type, one per line. The wheel updates as you go.
Tap Spin
Tap Remove & Spin Again to draw again without repeating a winner.
Pro tip: in Chrome, tap the three-dot menu โ Add to Home screen for standalone, full-screen access.
๐ฑ On iPad
๐ฑ iPadOpen Safari
Any other iPad browser works too โ the tool isn't Safari-specific.
Go to spin-the-wheel.tech
Loads instantly, no sign-in, no cookie banner blocking the page.
Add your entries
Type with the on-screen keyboard, a connected keyboard, or Apple Pencil.
Tap Spin
Tap Remove & Spin Again for sequential picks without repeats.
Pro tip: tap Share in Safari's toolbar โ Add to Home Screen for a full-screen icon, no address bar.
๐ป On Chromebook
๐ป ChromebookOpen Chrome from the shelf
ChromeOS ships with Chrome as the only browser.
Go to spin-the-wheel.tech
Loads instantly, even on lower-powered school Chromebook hardware.
Add your entries
Click the text area and type, one per line.
Click Spin
Click Remove & Spin Again to draw again without repeats.
Pro tip: click the install icon in the address bar to pin it to the shelf as a standalone app.
๐ฅ๏ธ On Windows
๐ฅ๏ธ WindowsOpen Edge or Chrome
Both pre-installed or a quick download, and behave identically.
Go to spin-the-wheel.tech
No sign-in prompt, no cookie banner blocking the wheel.
Add your entries
Click the text area and type your list, one entry per line.
Click Spin
Click Remove & Spin Again for a sequence of picks with no repeats.
Pro tip: click the install icon in the address bar to pin it to the Start menu and taskbar.
๐ On Mac
๐ MacOpen Safari or Chrome
Safari uses WebKit, Chrome uses Chromium โ both fully supported.
Go to spin-the-wheel.tech
Loads instantly on any Mac from the last decade.
Add your entries
Click the text area and type, one per line, with trackpad or keyboard.
Click Spin
Click Remove & Spin Again to keep drawing without a repeat winner.
Pro tip: in Safari, choose File โ Add to Dock for a standalone icon with no tabs or toolbar.
What's actually different across platforms
- Screen mirroring, every way. iPhone/iPad use AirPlay; Android has Chromecast, Miracast, and Samsung Smart View; Chromebook has Cast built into the toolbar; Windows offers Cast to Device; Mac uses AirPlay. Everyone in the room watches the same spin land in real time.
- Browser engines differ, results don't. iOS restricts every browser to WebKit, so Safari and Chrome behave identically on iPhone/iPad. Chrome, Edge, and ChromeOS run on Chromium's V8 engine. Android additionally supports Firefox, Samsung Internet, and Brave. All implement the same Web Cryptography API specification, so no platform or browser gets a fairer result.
- iPad adds real multitasking. Split View pins the wheel beside a second app like Notes; Stage Manager on newer models lets you resize and overlap windows. Apple Pencil and Scribble convert handwriting into typed entries.
- Managed-device restrictions hit Chromebooks hardest. School and enterprise ChromeOS devices often block unapproved extensions and some sites outright. Since Spin the Wheel needs neither an extension nor elevated permissions, it clears most of those policies without an IT request.
- Keyboard shortcuts work everywhere. Tab to the Spin button and press Space or Enter, standard browser behavior on Chromebook, Windows, and Mac, useful for accessibility-focused setups.
What people use it for
๐ Classrooms, any device
Load the class list on a phone, iPad, or Chromebook cart, mirror it to the classroom display, and call on students at random. No paper strips, no accusations of favouritism.
๐ Live giveaways
Running a YouTube Live, TikTok, or Instagram giveaway? Add entrant names on whatever's in your hand, share your screen, and spin live on camera.
๐ผ Team standups
Pin it to the Windows taskbar or Mac Dock next to a meeting app, load team names, and spin to set speaking order without switching windows.
๐ Group decisions
Everyone adds a dinner suggestion on their own phone, or pass one iPad around the table. One spin settles it, no thirty-minute debate.
Free everywhere, offline-friendly everywhere
Spin the Wheel is free on every platform: no App Store or Play Store purchase, no in-app subscription, no entry limit, no watermark on the result. Cryptographic randomness, the 10,000-spin fairness test, Remove & Spin Again, and the winners log are all available the moment the page loads, on any device, without creating an account.
Once loaded, the wheel runs entirely in the browser with no server calls during a spin, so a dropped connection afterward doesn't stop it working on any platform. Add the site to your home screen, shelf, taskbar, or Dock so it caches locally, useful in school buildings and event venues where signal is unreliable.
The technology behind randomness, on any device
Most browser-based random pickers lean on Math.random(), a pseudo-random generator that follows a deterministic formula from a fixed seed. V8, the engine behind Chrome, Edge, and ChromeOS, documents on its own engineering blog that it uses the xorshift128+ algorithm for Math.random() while noting that algorithm still isn't intended for cryptographic use (v8.dev/blog/math-random, 2015). Safari's JavaScriptCore engine has similar limitations for the same function.
Spin the Wheel uses crypto.getRandomValues() instead, the Web Cryptography API standard that every platform uses for tasks like HTTPS session key generation. Each device draws entropy from its own operating system's randomness source, but the specification requires the same cryptographic quality from every compliant browser. A spin on a five-year-old iPhone is exactly as unpredictable as one on the newest Windows PC.
Run the built-in Auto Spin ร10,000 test on whichever device you're using to see this for yourself. It simulates ten thousand spins in under a second using the same crypto.getRandomValues() call as a real spin, so the distribution reflects genuine behavior, not a demo mode with different math.
| Platform | Default browser | Install shortcut |
|---|---|---|
| iPhone / iPad | Safari (Chrome also common) | Share โ Add to Home Screen |
| Android | Chrome (Firefox, Samsung Internet also common) | โฎ menu โ Add to Home screen |
| Chromebook | Chrome (only option) | Install icon in address bar โ adds to shelf |
| Windows | Edge (Chrome also common) | Install icon โ pins to Start & taskbar |
| Mac | Safari (Chrome also common) | File โ Add to Dock (Safari) or install icon (Chrome) |
Chromebooks are now the primary student device in 42% of US school districts, compared with 15% for Windows laptops, 13% for Windows desktops, and 13% for iPads (aboutchromebooks.com, 2026). Outside the classroom, Windows still leads overall desktop web usage at roughly 62%, with macOS around 14.6% (StatCounter Global Stats, 2026), and Apple's iPad holds 58.2% of the US tablet market (StatCounter GlobalStats, 2026). A tool built for only one of these misses most of the room, which is exactly why Spin the Wheel treats all of them as first-class.
Frequently asked questions
Do I need to download an app to use Spin the Wheel?
No, on any device. Spin the Wheel runs entirely in your browser, Safari, Chrome, Edge, Firefox, or Samsung Internet. There's nothing to download, no account to create, and no subscription. Open spin-the-wheel.tech, add your entries, and spin.
Is the random result actually fair, or can it be rigged?
Every spin uses crypto.getRandomValues(), the Web Cryptography API standard also used for HTTPS key generation. Unlike Math.random(), this source draws entropy from the operating system and can't be predicted from past outputs (v8.dev, 2015). This is identical across every platform and browser engine.
Does Spin the Wheel work without an internet connection?
Yes, once the page has loaded, on every device. The wheel runs entirely in your browser with no server calls during a spin. Add the site to your home screen, shelf, taskbar, or Dock so it caches locally.
Can I add Spin the Wheel to my home screen or install it as an app?
Yes, on every platform. iPhone: Safari Share โ Add to Home Screen. Android: Chrome โฎ menu โ Add to Home screen. Chromebook: install icon in the address bar. Windows: install icon โ pins to Start and taskbar. Mac: Safari's File โ Add to Dock, or Chrome's install icon.
Can I show the wheel on a bigger screen, like a classroom TV or projector?
Yes, on every platform: AirPlay (iPhone/iPad/Mac), Chromecast/Miracast/Smart View (Android), Cast (Chromebook/Windows). The wheel mirrors instantly so a whole room watches the same result land.
Does Spin the Wheel work on a school-managed Chromebook?
Yes. It runs as a plain webpage with no extension, no admin install, and no elevated permissions, so it works even on Chromebooks locked down with a district-managed policy. If a school network filter blocks the domain, ask IT to allowlist spin-the-wheel.tech.
Can I use Split View, Stage Manager, or multitask while the wheel is open?
Yes on iPad and any desktop platform. iPad's Split View pins the wheel beside a second app like Notes; Stage Manager overlaps windows on newer models. On Windows and Mac, it runs in a normal tab or installed window alongside anything else open.
Is there a keyboard shortcut to spin without a mouse or touchscreen?
Yes. Tab to the Spin button and press Space or Enter, standard behavior for any focused button in a browser. Works identically on Chromebook, Windows, and Mac.
Ready to spin?
Open whichever browser is already running, go to spin-the-wheel.tech, add your list, and hit Spin. It takes about ten seconds on any device, because it's the same webpage everywhere, not five different apps pretending to be one tool.
Sources
- aboutchromebooks.com. "Education Sector Chromebook Adoption Statistics 2026." Retrieved 2026-07-18. aboutchromebooks.com/education-sector-chromebook-adoption-statistics
- StatCounter Global Stats. "Desktop Operating System Market Share Worldwide." Retrieved 2026-07-18. gs.statcounter.com/os-market-share/desktop
- StatCounter GlobalStats. "Tablet Vendor Market Share United States of America." Retrieved 2026-07-05. gs.statcounter.com/tablet-vendor-market-share/united-states-of-america
- V8 team. "Math.random()." v8.dev blog, 2015. Retrieved 2026-07-18. v8.dev/blog/math-random