YouTube to NSFWYouTube Redirector

Cambia l'URL di YouTube per NSFWYouTube automaticamente

// ==UserScript==
// @name         YouTube to NSFWYouTube Redirector
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Cambia l'URL di YouTube per NSFWYouTube automaticamente
// @author       Il Tuo Nome
// @match        https://www.youtube.com/watch?v=*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Ottieni l'URL corrente
    let currentURL = window.location.href;

    // Modifica l'URL sostituendo "youtube" con "nsfwyoutube"
    let newURL = currentURL.replace("youtube.com", "nsfwyoutube.com");

    // Reindirizza alla nuova URL
    window.location.href = newURL;
})();