Force Discord Canary

Redirect Stable and PTB to Canary

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Force Discord Canary
// @author       Puyodead1
// @description  Redirect Stable and PTB to Canary
// @version      1.0.0
// @match        *://discord.com/*
// @match        *://ptb.discord.com/*
// @match        *://ptb.discordapp.com/*
// @match        *://discordapp.com/*
// @match        *://www.discord.com/*
// @match        *://www.ptb.discord.com/*
// @match        *://www.ptb.discordapp.com/*
// @match        *://www.discordapp.com/*
// @run-at       document-start
// @grant        window.onurlchange
// @icon         https://www.google.com/s2/favicons?sz=64&domain=discord.com
// @namespace https://greasyfork.org/users/1409288
// ==/UserScript==

(function() {
    function redirect() {
        location.hostname = "canary.discord.com";
    }

    window.addEventListener('urlchange', ({ url }) => {
        redirect();
    });

    redirect();
})();