Redirect to old chat - character.ai

8/28/2023, 11:43:38 AM

目前為 2023-08-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Redirect to old chat - character.ai
// @namespace   Violentmonkey Scripts
// @match       https://beta.character.ai/
// @license MIT
// @grant       none
// @version     1.0
// @author      -
// @description 8/28/2023, 11:43:38 AM
// ==/UserScript==

// if there's a "chat2" in the url, replace the "chat2" with "chat"
window.location.href = window.location.href.replace(/chat2/, "chat");