remove-youtube-shorts
remove-youtube-shorts copied to clipboard
Block shorts completely
HI, here is the code to block main page of shorts, pls add it if you think it is useful
const regex = /^https:\/\/www\.youtube\.com\/shorts.*/;
if (regex.test(window.location.href)) {
window.location.href = "https://www.youtube.com/";
}