Invidious Redirect channel to playlist

Redirect YouTube to Invidious and appends "quality=dash" to URL.

// ==UserScript==
// @name         Invidious Redirect channel to playlist
// @description  Redirect YouTube to Invidious and appends "quality=dash" to URL.
// @version      0.1
// @author       SilentFlick
// @match        *://yewtu.be/channel/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license MIT
// @namespace https://gf.qytechs.cn/users/950251
// ==/UserScript==

var url = new URL(window.location);
var channelID = url.pathname.split('/')[2];

if(channelID) {
  url.pathname = "/playlist";
  url.searchParams.set("list", channelID);
  console.log("Redirect to: " + url.toString());
  location.href = url;
}

QingJ © 2025

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