remove-youtube-shorts icon indicating copy to clipboard operation
remove-youtube-shorts copied to clipboard

Block shorts completely

Open FM7077 opened this issue 1 year ago • 0 comments

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/";
}

FM7077 avatar Jul 16 '23 08:07 FM7077