Watch YouTube Shorts in the Normal Player (No Extensions Required)

31 Mar 2026   -   5 min read

The YouTube Shorts player strips away the controls you rely on every day — no playback speed, no easy volume control, no theatre mode. Here’s how to instantly escape it using nothing but your address bar.

The Problem With the Shorts Player

YouTube Shorts on desktop is a crippled experience wearing a mobile outfit. When a video URL contains /shorts/, YouTube forces it into a vertical swipe player that was designed for a phone screen. On a desktop browser you lose:

  • Playback speed controls — can’t slow down a tutorial or speed up a rambling clip
  • Volume mixing — the player hijacks your system volume instead of using the standard site-level mixer
  • Theatre and cinema mode — the video is pinned to a narrow portrait strip in the middle of your screen
  • Chapter markers and full description — hidden behind an extra click or gone entirely
  • Mini-player — so you can’t continue watching while you switch tabs

The frustrating part? Every single one of those features still works perfectly — you just have to get YouTube to use the normal player.

The Fix: One URL Swap

YouTube Shorts and regular YouTube videos use the same underlying video ID. The only difference is the URL format:

Format URL
Shorts player https://www.youtube.com/shorts/dQw4w9WgXcQ
Normal player https://www.youtube.com/watch?v=dQw4w9WgXcQ

The manual fix:

  1. Look at the address bar — note the video ID after /shorts/
  2. Delete /shorts/ and replace it with /watch?v=
  3. Press Enter

That’s it. The exact same video now plays in the full YouTube player with every feature intact.

💡 Tip: The video ID is the random string of letters and numbers after /shorts/ — in the example above it's dQw4w9WgXcQ. That ID doesn't change when you swap the URL format.

Try It Right Now

Paste any Shorts URL into the box below and the converter will generate the normal-player URL for you:

🔗 Shorts URL Converter

Bookmarklet: One-Click Fix (Works on Any Computer)

Doing the manual swap every time is only a few keystrokes, but if you watch a lot of Shorts it gets old fast. A bookmarklet is a bookmark whose address is a snippet of JavaScript instead of a URL. Click it on any Shorts page and it redirects you to the normal player instantly — no typing required.

The bookmarklet code:

javascript:(function(){var m=location.pathname.match(/\/shorts\/([A-Za-z0-9_-]+)/);if(m)location.href='https://www.youtube.com/watch?v='+m[1];})();

How to install it

Desktop (Chrome, Edge, Firefox):

  1. Show the bookmarks bar if it’s hidden: Ctrl + Shift + B (Windows/Linux) or Cmd + Shift + B (Mac)
  2. Right-click the bookmarks bar → Add page… (Chrome/Edge) or New Bookmark (Firefox)
  3. Set the Name to something like “▶ Normal Player”
  4. Paste the code above as the URL / Address
  5. Save

Or drag this link straight to your bookmarks bar:

▶ Normal Player

How to use it

Navigate to any YouTube Shorts page, then click the ▶ Normal Player bookmarklet. The page reloads instantly as a normal YouTube video with all controls restored.

💡 Mobile: Bookmarklets work on mobile browsers too. Save it to your bookmarks, then tap it from the bookmarks list whenever you land on a Shorts page. See this post for a detailed walkthrough of the mobile installation steps.

How Does It Work?

YouTube uses the same video-delivery infrastructure for Shorts and regular videos. The /shorts/VIDEO_ID path is purely a UI decision — it tells YouTube’s front-end to render the mobile swipe player. Change the path to /watch?v=VIDEO_ID and YouTube renders the standard desktop player instead. The video file itself, its CDN URL, its resolution, and all its metadata stay identical.

This is different from a traditional “download” problem — you’re not bypassing any DRM or accessing anything you weren’t meant to. You’re simply telling YouTube which player skin to use to display a video you have full permission to watch.

Give it a try next time YouTube drops you into the Shorts player on a desktop — and take back control of your playback speed. ⚡

Drop a comment below if you found this useful, or if you know other YouTube URL tricks! 👇