Discord URL Redirector BY CHATGPT

Automatically replaces https://discord.com/channels/ with discord://discord.com/channels/

// ==UserScript==
// @name         Discord URL Redirector BY CHATGPT
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically replaces https://discord.com/channels/ with discord://discord.com/channels/
// @author       You
// @match        *://discord.com/channels/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    // Получаем текущий URL
    const currentUrl = window.location.href;
    // Проверяем, что он содержит нужную часть, и заменяем на новый протокол
    if (currentUrl.startsWith('https://discord.com/channels/')) {
        const newUrl = currentUrl.replace('https://discord.com/channels/', 'discord://discord.com/channels/');
        // Перенаправляем пользователя на новый URL
        window.location.replace(newUrl);
    }
})();