// ==UserScript== // @name Invidious Redirector // @description Automatically redirects to an Invidious instance when loading a Youtube page. // @version 1 // @grant none // @include https://www.youtube.com/* // ==/UserScript== const INVIDIOUS_INSTANCE = "yewtu.be" let youtubeUrl = window.location.href; let invidiousUrl = youtubeUrl.replace("www.youtube.com", INVIDIOUS_INSTANCE); window.location.href = invidiousUrl;