Character AI URL Redirect

redirect you from "chat2?char=" to "chat?char="

  1. // ==UserScript==
  2. // @name Character AI URL Redirect
  3. // @namespace Violentmonkey Scripts
  4. // @match https://beta.character.ai/chat2*
  5. // @grant none
  6. // @description redirect you from "chat2?char=" to "chat?char="
  7. // @version 0.0.1.20230828085346
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. // Get the current URL
  14. var currentURL = window.location.href;
  15.  
  16. // Replace "chat2" with "chat" in the URL
  17. var newURL = currentURL.replace('/chat2', '/chat');
  18.  
  19. // Redirect to the new URL
  20. window.location.href = newURL;
  21. })();