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.20250516084958
// @namespace http://greasyfork.icu/users/1435046
// ==/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 }));
}
}
});
})();