Poe Ai Unlimited Messages V2

Unlimited message limit

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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
})()