Remove Placeholder text in chat box

2/18/2025, 8:38:59 PM

// ==UserScript==
// @name        Remove Placeholder text in chat box
// @namespace   Violentmonkey Scripts
// @match       http://127.0.0.1:8000/*
// @grant       none
// @version     1.0
// @author      -
// @description 2/18/2025, 8:38:59 PM
// ==/UserScript==
document.addEventListener("DOMContentLoaded", function () {
    let textarea = document.getElementById("send_textarea");
    if (textarea) {
        textarea.removeAttribute("placeholder"); // Removes the placeholder
    }
});
setInterval(() => {
    let textarea = document.getElementById("send_textarea");
    if (textarea) {
        textarea.removeAttribute("placeholder");
    }
}, 500); // Runs every 0.5 seconds to ensure the placeholder stays removed

QingJ © 2025

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