// ==UserScript== // @name Qwen Chat Auto-Paste // @description Paste received string message into the chat.qwen.ai textarea // @match https://chat.qwen.ai/* // @version 0.0.1.20250516090058 // @namespace https://greasyfork.org/users/1435046 // @downloadURL none // ==/UserScript== (function () { window.addEventListener('message', event => { if (typeof event.data === 'string') { const textarea = document.getElementById('chat-input'); if (textarea) { textarea.value = event.data; textarea.dispatchEvent(new Event('input', { bubbles: true })); document.getElementById('send-message-button').click(); } } }); })();