// ==UserScript== // @name invidious.lunar.icu to youtube // @namespace http://tampermonkey.net/ // @version 0.1 // @description Redirect invidious.lunar.icu to youtube // @author S30N1K // @license MIT // @match https://invidious.lunar.icu/watch?v=* // @icon https://www.google.com/s2/favicons?sz=64&domain=lunar.icu // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; const [,videoId] = location.href.match(/https:\/\/invidious\.lunar\.icu\/watch\?v=(.*)/) if (videoId){ location.href = "https://www.youtube.com/watch?v=" + videoId } })();