Chen (@LightChen) 在 修复Google AI Studio大香蕉上传图片的油猴脚本 中发帖
// ==UserScript==
// @name AI Studio Run Button Fix
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Keep the Run button enabled on Google AI Studio
// @match https://aistudio.google.com/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function () {
'use strict';
setInterval(() => {
const btn = document.query...