8/28/2023, 11:43:38 AM
当前为
// ==UserScript==
// @name Redirect to old chat - character.ai
// @namespace Violentmonkey Scripts
// @license MIT
// @match https://beta.character.ai/
// @grant none
// @version 1.1
// @author -
// @description 8/28/2023, 11:43:38 AM
// ==/UserScript==
// if there's a "chat2" in the url
if (window.location.href.includes("chat2")) {
window.location.href = window.location.href.replace("chat2", "chat");
} else {
// send a message in the console saying "chat2 not found, doing nothing"
console.log("chat2 not found, doing nothing");
}