Skip to content

Instantly share code, notes, and snippets.

@andyeff
Created May 15, 2023 15:17
Show Gist options
  • Select an option

  • Save andyeff/cc7bb91a9ef06a287582e875e9d4edbe to your computer and use it in GitHub Desktop.

Select an option

Save andyeff/cc7bb91a9ef06a287582e875e9d4edbe to your computer and use it in GitHub Desktop.
greasemonkey youtube shorts to normal
// ==UserScript==
// @name Youtube Shorts to normal page
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Gives you the normal page
// @author You
// @match https://www.youtube.com/shorts/*
// ==/UserScript==
(function() {
'use strict';
var myurl = document.URL.replace("shorts/", "watch?v=")
document.location.replace(myurl);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment