Advertisement
jmcken

Untitled

Sep 7th, 2023
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // ==UserScript==
  2. // @name YouTube Shorts Player Switcher
  3. // @version 1.0
  4. // @description Replaces the YouTube Shorts player with the standard player
  5. // @match https://www.youtube.com/*
  6. // @grant none
  7. // ==/UserScript==
  8.  
  9. (function() {
  10. 'use strict';
  11.  
  12. if (location.href.match("shorts\/")) {
  13. location.href = location.href.replace("shorts\/", "watch?v=");
  14. }
  15.  
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement