Greasy Fork

Greasy Fork is available in English.

invidious.lunar.icu to youtube

Redirect invidious.lunar.icu to youtube

目前为 2023-10-30 提交的版本,查看 最新版本

// ==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
// ==/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
    }
})();