-
-
Notifications
You must be signed in to change notification settings - Fork 542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redirect Shorts to default player #1701
Comments
function redirectToWatchPage() {
const { origin, pathname } = location;
const isShorts = pathname.startsWith("/shorts/");
const newURL = `${origin}${pathname.replace("shorts", "watch")}`;
isShorts && location.replace(newURL);
}
function run() {
redirectToWatchPage();
document.addEventListener("yt-navigate-start", redirectToWatchPage);
} |
yesss
to overwrite shorts links instead of redirecting after the fact |
I use https://github.com/einaregilsson/Redirector for that - but in general i'd say there probably are enough users that would only need it for YT-shorts to warrant implementing it here 👍 |
Hey is this issue still open? Can i work on it?? |
I'm going to start working on this issue now. I was wondering if anyone has any opinions on whether it should be redirecting from Shorts or overwriting Shorts links? The latter would probably have a smoother experience, but it won't work if you click on a Shorts link from outside of Youtube such as Discord My plan is to implement both as separate switches so the user can decide which they prefer |
|
All issues pretaining to this matter are now closed. What's going on ? Thanks |
Time to tag @benlad @probablyraging too 👋 since we long started implementing such independently, further inflating maintenance among the sum of us volunteers. Check #1881 for some: "If we work on this at all, lets work together" |
hi @probablyraging! :) oh no, i didnt see it is archived already |
hi! @codefaux edit / just consolidating the threads(@raszpl ) For URL Forwarding:
|
⚬ PROBLEM:
The Shorts player (
/shorts/id
) has poor UX, especially when compared to the default player (/watch?v=id
). You cannot adjust the volume, scrub through the video, etc. People dislike the Shorts player because it is different from the default player⚬ SOLUTION:
Add an option to automatically redirect from the Shorts player to the default player
⚬ ALTERNATIVES:
Add a volume slider and the ability to scrub through the Short on the Shorts player
⚬ RELEVANCE / SCOPE:
People generally dislike Shorts. If the player uses the default player, more people may want to watch Shorts more often
⚬ "SIDE EFFECTS":
People who generally dislike Shorts as a whole or do not mind the Shorts player may be annoyed by this feature
⚬ CONTEXT:
If this is a feature that people are interested in, I would be interested in implementing it
The text was updated successfully, but these errors were encountered: