Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name YouTube Shorts Player Switcher
- // @version 1.0
- // @description Replaces the YouTube Shorts player with the standard player
- // @match https://www.youtube.com/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- if (location.href.match("shorts\/")) {
- location.href = location.href.replace("shorts\/", "watch?v=");
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement