79186687

Date: 2024-11-13 21:15:09
Score: 1
Natty:
Report link

To do this with the current link structure use this script:

// ==UserScript==
// @name         YouTube Channel Homepage Redirect to Videos
// @version      1.0
// @description  Redirects YouTube channel homepages to the Videos tab
// @author       You
// @match        https://www.youtube.com/@*
// @match        https://www.youtube.com/c/*
// @match        https://www.youtube.com/user/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

     if (/^https:\/\/www\.youtube\.com\/(c|user|@)[^\/]+\/?$/.test(window.location.href)) {
        window.location.href = window.location.href + "/videos";
    }
})();
Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shrank1858