YouTubeRedux
YouTubeRedux copied to clipboard
[Feature Improvement] Replace shorts links rather than redirecting
Redirecting clutters history, making going back very annoying.
Same as #26 I believe, replacing
window.location.href = redirectLocation;
with
window.location.replace(redirectLocation);
should fix this.