YouTube redirect to mobile

Redirect YouTube desktop site to mobile site

安装此脚本?
作者推荐脚本

您可能也喜欢youtube profile picture hd

安装此脚本
// ==UserScript==
// @name        YouTube redirect to mobile
// @namespace   YouTube redirect to mobile
// @match       https://www.youtube.com/*
// @run-at      document-start
// @grant       none
// @version     1.2
// @description Redirect YouTube desktop site to mobile site
// ==/UserScript==

(function() {
    'use strict';
    
    // Check if the current URL is the desktop version of YouTube
    if (window.location.hostname === 'www.youtube.com') {
        // Redirect to the mobile version
        window.location.href = 'https://m.youtube.com' + window.location.pathname + window.location.search;
    }
})();

QingJ © 2025

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