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:
- Look at the address bar — note the video ID after
/shorts/ - Delete
/shorts/and replace it with/watch?v= - Press Enter
That’s it. The exact same video now plays in the full YouTube player with every feature intact.
/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:
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):
- Show the bookmarks bar if it’s hidden:
Ctrl + Shift + B(Windows/Linux) orCmd + Shift + B(Mac) - Right-click the bookmarks bar → Add page… (Chrome/Edge) or New Bookmark (Firefox)
- Set the Name to something like “▶ Normal Player”
- Paste the code above as the URL / Address
- Save
Or drag this link straight to your bookmarks bar:
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.
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! 👇