Greasy Fork is available in English.
Redirect invidious.lunar.icu to youtube
当前为
// ==UserScript==
// @name New Userscript
// @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
// ==/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
}
})();