您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Increase the time limit on Krea from 3 minutes to 120 minutes
// ==UserScript== // @name Krea Minute Increase // @namespace http://tampermonkey.net/ // @version 0.1 // @description Increase the time limit on Krea from 3 minutes to 120 minutes // @author You // @match *://*.krea.ai/* // Adjust the domain to match the Krea website // @grant none // ==/UserScript== (function() { 'use strict'; // A function to find and modify minute values from 3 to 120 function modifyMinutes() { // You may need to adjust this selector based on the actual structure of the Krea website let minuteElements = document.querySelectorAll("span, p, div"); // Adjust selectors to match minute elements minuteElements.forEach(el => { if (el.innerText.includes('3 minutes')) { el.innerText = el.innerText.replace('3 minutes', '120 minutes'); } }); } // Run the function initially and set an interval to check for dynamic changes on the page modifyMinutes(); setInterval(modifyMinutes, 2000); // Recheck every 2 seconds to ensure dynamic content is updated })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址