YouTube Mobile Redirect

Automatically redirects www.youtube.com to m.youtube.com (intended for mobile use only, not for desktop).

// ==UserScript==
// @name        YouTube Mobile Redirect
// @namespace   youtube-mobile-redirect
// @match       https://www.youtube.com/*
// @run-at      document-start
// @grant       none
// @version     1
// @description Automatically redirects www.youtube.com to m.youtube.com (intended for mobile use only, not for desktop).
// ==/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;
    }
})();