⎗ ✓ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18// ==UserScript== // @name Instant cai replies (url params) // @namespace http://tampermonkey.net/ // @version 1.1 // @description Adds some params to cai chats // @match https://beta.character.ai/chat* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; const url = window.location.href; const pattern = /https:\/\/beta\.character\.ai\/chat\?.+/; if (pattern.test(url) && !url.includes('stream_animation_chunk_size=0&stream_animation_chunk_delay=0')) { const newUrl = `${url}&stream_animation_chunk_size=0&stream_animation_chunk_delay=0`; window.location.href = newUrl; } })();