Greasy Fork is available in English.
Paste received string message into the chat.qwen.ai textarea
当前为
// ==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.20250516092757
// @namespace http://greasyfork.icu/users/1435046
// ==/UserScript==
(function () {
window.addEventListener('message', event => {
if (event.data.type === 'prompt') {
const textarea = document.getElementById('chat-input');
if (textarea) {
textarea.value = event.data.content;
textarea.dispatchEvent(new Event('input', { bubbles: true }));
document.getElementById('send-message-button').click();
}
}
});
})();