Auto HI

Automatically adding "Hi, " into chat

// ==UserScript==
// @name         Auto HI
// @namespace    http://tampermonkey.net/
// @version      2025-03-04
// @description  Automatically adding "Hi, " into chat
// @author       You
// @match        https://chatgpt.com/*
// @license MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chatgpt.com
// @grant        none
// ==/UserScript==


function AutoHI(){
    let inputPlace = document.querySelector("#prompt-textarea")
    if (inputPlace && inputPlace.textContent.length===0 && document.querySelector("div.markdown") === null) {
        inputPlace.textContent = "Привет, ";
    }
}
setInterval(AutoHI, 500)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址