Created
May 15, 2023 15:17
-
-
Save andyeff/cc7bb91a9ef06a287582e875e9d4edbe to your computer and use it in GitHub Desktop.
greasemonkey youtube shorts to normal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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