您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
让每一个都能使用上ChatGPT,本脚本在国内提供免费的GPT5-mini模型使用,如需更好体验可订阅付费系统:https://afdian.com/a/warmo
// ==UserScript== // @name GPT5/GPT4账号池--免费GPT5-mini/GPT4o镜像车队服务!👍(使用前先看使用说明) // @namespace 失效联系V:caicats // @version 1.1 // @description 让每一个都能使用上ChatGPT,本脚本在国内提供免费的GPT5-mini模型使用,如需更好体验可订阅付费系统:https://afdian.com/a/warmo // @match https://gpt.github.cn.com/* // @grant none // @license MIT // @run-at document-end // ==/UserScript== (function() { 'use strict'; function fillAuthCode() { const input = document.querySelector('#password'); if (!input) { alert("未找到授权码输入框!"); return; } const val = "GPTDSB"; input.value = val; input.dispatchEvent(new Event("input", { bubbles: true })); input.dispatchEvent(new Event("change", { bubbles: true })); alert("已破解填充授权码!"); } function addButton() { if (document.getElementById("autoFillBtn")) return; const btn = document.createElement("button"); btn.id = "autoFillBtn"; btn.innerText = "点我破解自动填充授权码"; btn.style.cssText = ` margin: 10px 0; background-color: #4CAF50; color: white; padding: 8px 16px; border: none; border-radius: 6px; cursor: pointer; font-size: 14px; `; btn.onclick = fillAuthCode; const continueBtn = [...document.querySelectorAll("button")].find(b => b.innerText.includes("继续")); if (continueBtn && continueBtn.parentNode) { continueBtn.parentNode.insertBefore(btn, continueBtn); } else { document.body.appendChild(btn); } } function addFloatingImage() { const floatDiv = document.createElement('div'); floatDiv.style.cssText = ` position: fixed; right: 20px; bottom: 20px; z-index: 9999; cursor: pointer; `; const iconImg = document.createElement('img'); iconImg.src = 'https://i.postimg.cc/9fWYc7nT/image.jpg'; iconImg.style.width = '300px'; iconImg.style.height = '176px'; floatDiv.appendChild(iconImg); document.body.appendChild(floatDiv); floatDiv.addEventListener('click', function() { window.location.href = 'http://h5ma.cn/jiaoben'; }); } window.addEventListener("load", () => { if (location.pathname.startsWith("/login")) { addButton(); } else if (location.pathname === "/" || location.pathname === "") { addFloatingImage(); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址