Greasy Fork

Greasy Fork is available in English.

Qwen Chat Auto-Paste

Paste received string message into the chat.qwen.ai textarea

目前为 2025-05-16 提交的版本。查看 最新版本

// ==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();
      }
    }
  });
})();