白嫖GPT网站模型次数、突破4o模型次数限制 直接续杯🔫 (使用前看说明)

突破特定网站上面GPT-4o模型次数限制,直接续杯🐎。因脚本特殊性可能会失效,失效请访问:https://afdian.com/a/warmo 使用

  1. // ==UserScript==
  2. // @name 白嫖GPT网站模型次数、突破4o模型次数限制 直接续杯🔫 (使用前看说明)
  3. // @namespace https://afdian.com/a/warmo
  4. // @version 1.1
  5. // @description 突破特定网站上面GPT-4o模型次数限制,直接续杯🐎。因脚本特殊性可能会失效,失效请访问:https://afdian.com/a/warmo 使用
  6. // @author xlike,caicats
  7. // @match https://aichatru.ru/*
  8. // @match https://gpt4o.so/*
  9. // @match https://finechat.ai/*
  10. // @match https://gpt4o.so/zh-CN/app
  11. // @icon https://t1.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=32&url=https://chatgpt.com
  12. // @grant none
  13. // @license MIT
  14. // ==/UserScript==
  15. (function() {
  16. 'use strict';
  17. // 创建并插入续杯按钮
  18. const button = document.createElement('button');
  19. button.innerText = '续杯';
  20. button.style.position = 'fixed';
  21. button.style.right = '20px';
  22. button.style.top = '80px';
  23. button.style.padding = '10px 20px';
  24. button.style.fontSize = '16px';
  25. button.style.backgroundColor = '#007bff';
  26. button.style.color = '#fff';
  27. button.style.border = 'none';
  28. button.style.borderRadius = '5px';
  29. button.style.cursor = 'pointer';
  30. button.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)';
  31. button.style.zIndex = '1000';
  32. document.body.appendChild(button);
  33.  
  34. // 创建并插入付费库按钮
  35. const payButton = document.createElement('button');
  36. payButton.innerText = '付费库';
  37. payButton.style.position = 'fixed';
  38. payButton.style.right = '20px';
  39. payButton.style.top = '140px';
  40. payButton.style.padding = '10px 20px';
  41. payButton.style.fontSize = '16px';
  42. payButton.style.backgroundColor = '#28a745';
  43. payButton.style.color = '#fff';
  44. payButton.style.border = 'none';
  45. payButton.style.borderRadius = '5px';
  46. payButton.style.cursor = 'pointer';
  47. payButton.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)';
  48. payButton.style.zIndex = '1000';
  49. document.body.appendChild(payButton);
  50.  
  51. // 付费库按钮点击事件
  52. payButton.addEventListener('click', function() {
  53. window.location.href = 'https://afdian.com/a/warmo'; // 跳转到付费页面
  54. });
  55.  
  56. // 生成与旧值长度相同的随机字符串
  57. function generateRandomUniqueId(length) {
  58. return Array(length).fill(0).map(() => Math.random().toString(36).charAt(2)).join('');
  59. }
  60.  
  61. // 删除cookie的方法,只使用cookie名称
  62. function deleteCookie(name) {
  63. document.cookie = `${name}=; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=aichatru.ru; path=/`;
  64. }
  65.  
  66. // 获取cookie的方法
  67. function getCookie(name) {
  68. const cookies = document.cookie.split(';').map(cookie => cookie.trim());
  69. for (const cookie of cookies) {
  70. const [cookieName, cookieValue] = cookie.split('=');
  71. if (cookieName === name) {
  72. return cookieValue;
  73. }
  74. }
  75. return null;
  76. }
  77.  
  78. // 修改uniqueId的方法
  79. function updateUniqueId() {
  80. const oldUniqueId = getCookie('uniqueId');
  81. if (oldUniqueId) {
  82. deleteCookie('uniqueId');
  83. const newUniqueId = generateRandomUniqueId(oldUniqueId.length);
  84. document.cookie = `uniqueId=${newUniqueId};`;
  85. alert("续杯成功");
  86. } else {
  87. alert("续杯失败");
  88. }
  89. }
  90.  
  91. // 点击续杯按钮时更新uniqueId
  92. button.addEventListener('click', updateUniqueId);
  93. })();
  94.  
  95. // 新增的浮动图标功能
  96. function addFloatingIcon() {
  97. console.log("Floating Icon Function Called");
  98. var floatDiv = document.createElement('div');
  99. floatDiv.style.position = 'fixed';
  100. floatDiv.style.top = '30px';
  101. floatDiv.style.right = '48px';
  102. floatDiv.style.zIndex = '9999';
  103. floatDiv.style.width = '30px';
  104. floatDiv.style.height = '30px';
  105. floatDiv.style.borderRadius = '50%';
  106. floatDiv.style.background = '#fff';
  107. floatDiv.style.cursor = 'pointer';
  108. floatDiv.style.display = 'flex';
  109. floatDiv.style.alignItems = 'center';
  110. floatDiv.style.justifyContent = 'center';
  111.  
  112. var iconImg = document.createElement('img');
  113. iconImg.src = 'https://i.postimg.cc/nct7nCBL/5454.png';
  114. iconImg.style.width = '26px';
  115. iconImg.style.height = '26px';
  116.  
  117. floatDiv.appendChild(iconImg);
  118. document.body.appendChild(floatDiv);
  119.  
  120. // 点击事件,跳转到指定页面
  121. floatDiv.addEventListener('click', function() {
  122. window.location.href = 'https://h5ma.cn/caicats';
  123. });
  124. }
  125.  
  126. // 确保页面加载完成后执行浮动图标功能
  127. window.addEventListener('load', function() {
  128. addFloatingIcon();
  129. });

QingJ © 2025

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