ChatGPT免费用 无需登录无次数限制直接用!👍(使用前先看使用说明)
// ==UserScript==
// @name ChatGPT免费用 无需登录无次数限制直接用!👍(使用前先看使用说明)
// @namespace https://afdian.com/a/warmo
// @version 1.12
// @description 让每一个都能使用上ChatGPT,本脚本在国内提供免费的GPT4-mini模型使用,无需登录无次数限制直接用!如需使用高级的4、4o、o1等模型,可订阅库系统使用。订阅地址:https://afdian.com/a/warmo 🐱
// @icon data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+PHBhdGggZmlsbD0iIzJjM2U1MCIgZD0iTTMyIDJDMTUuNDMyIDIgMiAxNS40MzIgMiAzMnMxMy40MzIgMzAgMzAgMzAgMzAtMTMuNDMyIDMwLTMwUzQ4LjU2OCAyIDMyIDJ6bTAgNTRjLTEzLjIzMyAwLTI0LTEwLjc2Ny0yNC0yNFMxOC43NjcgOCAzMiA4czI0IDEwLjc2NyAyNCAyNFM0NS4yMzMgNTYgMzIgNTZ6Ii8+PHBhdGggZmlsbD0iIzNkYzJmZiIgZD0iTTMyIDEyYy0xMS4wNDYgMC0yMCA4Ljk1NC0yMCAyMHM4Ljk1NCAyMCAyMCAyMCAyMC04Ljk1NCAyMC0yMFM0My4wNDYgMTIgMzIgMTJ6bTAgMzZjLTguODM3IDAtMTYtNy4xNjMtMTYtMTZzNy4xNjMtMTYgMTYtMTYgMTYgNy4xNjMgMTYgMTZTNDAuODM3IDQ4IDMyIDQ4eiIvPjxwYXRoIGZpbGw9IiMwMGZmN2YiIGQ9Ik0zMiAyMGMtNi42MjcgMC0xMiA1LjM3My0xMiAxMnM1LjM3MyAxMiAxMiAxMiAxMi01LjM3MyAxMi0xMlMzOC42MjcgMjAgMzIgMjB6bTAgMjBjLTQuNDE4IDAtOC0zLjU4Mi04LThzMy41ODItOCA4LTggOCAzLjU4MiA4IDgtMy41ODIgOC04IDh6Ii8+PGNpcmNsZSBmaWxsPSIjZmZmIiBjeD0iMzIiIGN5PSIzMiIgcj0iNCIvPjwvc3ZnPg==
// @author 龙猫🐱
// @match https://go.gptdsb.com/**
// @match https://gpt.github.cn.com/**
// @match https://go.gptdie.com/**
// @match https://chat.openai.com/**
// @match https://chatgpt.com/**
// @match https://*.oaifree.com/**
// @match https://share.github.cn.com/**
// @match https://cc.plusai.me/**
// @match https://chat.chatgptplus.cn/**
// @match https://chat.rawchat.cc/**
// @match https://chat.sharedchat.cn/**
// @match https://chat.gptdsb.com/**
// @match https://chat.freegpts.org/**
// @match https://gpt.github.cn.com/**
// @match https://chat.aicnn.xyz/**
// @match https://*.xyhelper.com.cn/**
// @match https://oai.aitopk.com/**
// @match https://www.opkfc.com/**
// @match https://bus.hematown.com/**
// @match https://chatgpt.dairoot.cn/**
// @match https://plus.aivvm.com/**
// @match https://sharechat.aischat.xyz/**
// @match https://web.tu-zi.com/**
// @match https://chat1.2233.ai/**
// @match https://2233.ai/**
// @match https://yesiamai.com/**
// @match https://www.azs.ai/**
// @match https://gpt.universalbus.cn/**
// @match https://aichatru.ru/**
// @match https://chatgptchatapp.com/**
// ==/UserScript==
(function() {
'use strict';
function addUpgradeButton() {
// 检查是否已经添加过按钮,避免重复添加
if (document.querySelector('.upgrade-button')) return;
// 创建按钮容器
const button = document.createElement('a');
button.href = 'https://h5ma.cn/caicats';
button.target = '_blank';
button.className = 'upgrade-button';
button.style.position = 'fixed';
button.style.top = '5px'; // 保持靠近页面顶部
button.style.right = '26px'; // 保持距离右侧
button.style.display = 'flex';
button.style.alignItems = 'center';
button.style.backgroundColor = '#f0f0f0';
button.style.borderRadius = '24px'; // 保持圆角
button.style.padding = '10px 14px'; // 增大内边距让按钮变大
button.style.cursor = 'pointer';
button.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.15)'; // 增加阴影
button.style.fontFamily = 'Arial, sans-serif';
button.style.fontSize = '15px'; // 稍微增大字体
button.style.color = '#333';
button.style.textDecoration = 'none';
button.style.zIndex = '1000'; // 保证按钮在最上层显示
// 创建图标
const icon = document.createElement('div');
icon.className = 'upgrade-button-icon';
icon.textContent = '+';
icon.style.width = '22px'; // 增大图标尺寸
icon.style.height = '22px'; // 增大图标尺寸
icon.style.backgroundColor = '#000';
icon.style.borderRadius = '50%';
icon.style.marginRight = '8px'; // 调整图标和文字间距
icon.style.display = 'flex';
icon.style.alignItems = 'center';
icon.style.justifyContent = 'center';
icon.style.color = '#fff';
icon.style.fontSize = '13px'; // 增大图标文字
// 创建文字
const text = document.createElement('span');
text.textContent = '使用 GPT4o ';
// 将图标和文字添加到按钮中
button.appendChild(icon);
button.appendChild(text);
// 将按钮添加到页面
document.body.appendChild(button);
}
// 使用 setInterval 检测页面加载状态,并确保按钮被添加
const interval = setInterval(() => {
if (document.readyState === 'complete') {
addUpgradeButton();
clearInterval(interval); // 添加后清除定时器
}
}, 1000); // 每秒检查一次
})();