Poe Ai Unlimited Messages V2

Unlimited message limit

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Poe Ai Unlimited Messages V2
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description Unlimited message limit
// @author       Viruszy
// @match        https://poe.com/chat/212ctfsvq4mi10vt5wm
// @icon         https://www.google.com/s2/favicons?sz=64&domain=poe.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to provide unlimited free messages for Poe AI Web-Search Bot
    function provideFreeMessages() {
        // Define the input field for the message
        const inputField = document.querySelector('input[data-testid="message-input"]');
        if (inputField) {
            // Replace "Your unlimited free message goes here." with the desired message
            const message = "Your unlimited free message goes here.";
            // Fill the input field with the message
            inputField.value = message;
            // Trigger the input event to simulate typing
            inputField.dispatchEvent(new Event('input', { bubbles: true }));
        } else {
            console.error('Message input field not found.');
        }
    }

    // Provide free messages at regular intervals (in milliseconds)
    setInterval(provideFreeMessages, 1000); // Adjust the interval as needed
})()