YouTube - Channel redirector

Redirects the channel from featured to videos tab. Only for direct URL access.

目前为 2018-11-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         YouTube - Channel redirector
// @description  Redirects the channel from featured to videos tab. Only for direct URL access.
// @namespace    var512
// @author       var512
// @version      0.0.2
// @supportURL   https://gitlab.com/var512
// @supportURL   https://github.com/var512
// @include      /^https?:\/\/(www\.)?youtube\.com\/(channel|user)\/([a-zA-Z0-9_-]+)\/?(featured)?$/
// @icon         https://youtube.com/favicon.ico
// @license      MIT
// @noframes
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function () {
    "use strict";

    window.stop();
    window.location.replace(document.URL.replace(/(\/featured)?(\/)?$/, '') + '/videos');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址