Greasy Fork

Greasy Fork is available in English.

AllenAI Auto-Submit Listener

Listens for postMessage events on playground.allenai.org, enters into chat input, and auto-submits

当前为 2025-05-15 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         AllenAI Auto-Submit Listener
// @description  Listens for postMessage events on playground.allenai.org, enters into chat input, and auto-submits
// @match        https://playground.allenai.org/*
// @version 0.0.1.20250515173240
// @namespace http://greasyfork.icu/users/1435046
// ==/UserScript==

(function() {
    'use strict';

    function setNativeValue(element, value) {
        const lastValue = element.value;
        element.value = value;
        const tracker = element._valueTracker;
        if (tracker) {
            tracker.setValue(lastValue);
        }
        element.dispatchEvent(new Event('input', { bubbles: true }));
    }

    window.addEventListener('message', event => {

if (event.data?.type === 'newChatButtonClicked') {
          const newChatLink = document.querySelector('a[aria-label="Create a new thread"]');
    if (newChatLink) {
        newChatLink.click();
    }
    return;
}

        // ignore non-string messages and internal recaptcha message
        if (typeof event.data !== 'string' || event.data === 'recaptcha-setup') return;

        const message = event.data;

        // find the MUI/React textarea
        const textarea = document.querySelector(
            'textarea[name="content"], textarea[aria-label="Message OLMo"]'
        );
        if (!textarea) return;

        // inject into React state
        setNativeValue(textarea, message);

        // find and click the submit button
        const sendButton = document.querySelector('button[aria-label="Submit prompt"]');
        if (sendButton) {
            sendButton.click();
        }
    });
})();