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.20250516084529
// @namespace http://greasyfork.icu/users/1435046
// ==/UserScript==

(function () {
  'use strict';

  window.addEventListener('message', event => {
    if (typeof event.data === 'string') {
      const textarea = document.getElementById('chat-input');
      if (textarea) textarea.value = event.data;
    }
  });
})();