YouTube No-Cookie Redirect

Redirect YouTube video pages to youtube-nocookie.com version automatically

目前為 2025-06-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name         YouTube No-Cookie Redirect
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Redirect YouTube video pages to youtube-nocookie.com version automatically
// @author       fdslalkad
// @match        https://www.youtube.com/watch*
// @match        https://youtube.com/watch*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Get current URL
    const url = new URL(window.location.href);

    // Check if hostname is youtube.com or www.youtube.com
    if (url.hostname === 'www.youtube.com' || url.hostname === 'youtube.com') {
        // Change hostname to youtube-nocookie.com
        url.hostname = 'www.youtube-nocookie.com';

        // Redirect to the new URL
        window.location.replace(url.toString());
    }
})();

QingJ © 2025

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