您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirect Stable and PTB to Canary
// ==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(); })();