ChatGPT 增强

宽度对话框 & 一键清空聊天记录 & 向GPT声明指定语言回复

当前为 2024-08-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name ChatGPT Enhance
  3. // @name:en ChatGPT Enhance
  4. // @name:zh-CN ChatGPT 增强
  5. // @name:zh-TW ChatGPT 增強
  6. // @name:ja ChatGPT 拡張
  7. // @name:ko ChatGPT 향상
  8. // @name:de ChatGPT verbessern
  9. // @name:fr ChatGPT améliorer
  10. // @name:es ChatGPT mejorar
  11. // @name:pt ChatGPT melhorar
  12. // @name:ru ChatGPT улучшить
  13. // @name:it ChatGPT migliorare
  14. // @name:tr ChatGPT geliştirmek
  15. // @name:ar ChatGPT تحسين
  16. // @name:th ChatGPT ปรับปรุง
  17. // @name:vi ChatGPT cải thiện
  18. // @name:id ChatGPT meningkatkan
  19. // @namespace Violentmonkey Scripts
  20. // @match *://chat.openai.com/*
  21. // @match *://chatgpt.com/*
  22. // @version XiaoYing_2024.08.03.2
  23. // @grant GM_info
  24. // @grant GM_getValue
  25. // @grant GM_setValue
  26. // @grant GM_addStyle
  27. // @grant GM_deleteValue
  28. // @grant GM_xmlhttpRequest
  29. // @grant GM_setClipboard
  30. // @grant GM_registerMenuCommand
  31. // @grant GM_unregisterMenuCommand
  32. // @grant GM_getResourceText
  33. // @grant GM_getResourceURL
  34. // @grant GM_openInTab
  35. // @grant unsafeWindow
  36. // @run-at document-start
  37. // @author github.com @XiaoYingYo
  38. // @require https://greasyfork.org/scripts/464929-module-jquery-xiaoying/code/module_jquery_XiaoYing.js
  39. // @require https://greasyfork.org/scripts/464780-global-module/code/global_module.js
  40. // @require https://greasyfork.org/scripts/465643-ajaxhookerlatest/code/ajaxHookerLatest.js
  41. // @description 宽度对话框 & 一键清空聊天记录 & 向GPT声明指定语言回复
  42. // @description:en Wide dialog & Clear chat history & Declare specified language reply to GPT
  43. // @description:zh-CN 宽度对话框 & 一键清空聊天记录 & 向GPT声明指定语言回复
  44. // @description:zh-TW 寬度對話框 & 一鍵清空聊天記錄 & 向GPT聲明指定語言回復
  45. // @description:ja 幅広いダイアログ & チャット履歴をクリア & 指定された言語でGPTに宣言する
  46. // @description:ko 넓은 대화 상자 & 채팅 기록 지우기 & 지정된 언어로 GPT에 선언
  47. // @description:de Breites Dialogfeld & Chatverlauf löschen & GPT in angegebener Sprache deklarieren
  48. // @description:fr Boîte de dialogue large & Effacer l'historique du chat & Déclarer la réponse dans la langue spécifiée à GPT
  49. // @description:es Cuadro de diálogo ancho & Borrar el historial del chat & Declarar respuesta en el idioma especificado a GPT
  50. // @description:pt Caixa de diálogo ampla & Limpar o histórico do bate-papo & Declarar resposta no idioma especificado ao GPT
  51. // @description:ru Широкий диалоговое окно & Очистить историю чата & Объявить ответ на указанном языке в GPT
  52. // @description:it Ampia finestra di dialogo & Cancella la cronologia della chat & Dichiarare la risposta nella lingua specificata a GPT
  53. // @description:tr Geniş diyalog & Sohbet geçmişini temizle & GPT'ye belirtilen dilde yanıt bildir
  54. // @description:ar مربع حوار واسع & مسح سجل المحادثة & إعلان الرد باللغة المحددة إلى GPT
  55. // @description:th กล่องโต้ตอบกว้าง & ล้างประวัติการแชท & ประกาศการตอบกลับในภาษาที่ระบุไว้กับ GPT
  56. // @description:vi Hộp thoại rộng & Xóa lịch sử trò chuyện & Khai báo trả lời bằng ngôn ngữ được chỉ định cho GPT
  57. // @description:id Kotak dialog lebar & Hapus riwayat obrolan & Nyatakan balasan dalam bahasa yang ditentukan ke GPT
  58. // ==/UserScript==
  59.  
  60. // eslint-disable-next-line no-undef
  61. ajaxHooker.protect();
  62.  
  63. var globalVariable = new Map();
  64. var ignoreHookStr = '&ignoreHookStr';
  65.  
  66. (async function () {
  67. function initSession() {
  68. return new Promise((resolve) => {
  69. $.get('/api/auth/session', { headers: { Accept: 'application/json', 'Content-Type': 'application/json' } }).done((res) => {
  70. globalVariable.set('session', res);
  71. globalVariable.set('accessToken', res.accessToken);
  72. resolve();
  73. });
  74. });
  75. }
  76.  
  77. function clearAllConversations() {
  78. return new Promise(async (resolve) => {
  79. $.ajax({
  80. type: 'PATCH',
  81. url: '/backend-api/conversations',
  82. headers: { Accept: 'application/json', 'Content-Type': 'application/json', Authorization: `Bearer ${globalVariable.get('accessToken')}` },
  83. data: JSON.stringify({ is_visible: false }),
  84. success: (res) => {
  85. resolve(res);
  86. }
  87. });
  88. });
  89. }
  90.  
  91. function initClearButton() {
  92. return new Promise(async (resolve) => {
  93. let clearButtonSvg = '<svg t="1722633865116" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1793" width="24" height="24"><path d="M901.3 504.8l-76.3-150c-13.4-26.3-40-42.6-69.5-42.6H639c-1.1 0-2-0.9-2-2V120.6c0-31.1-25.3-56.3-56.3-56.3h-90c-31.1 0-56.3 25.3-56.3 56.3v189.6c0 1.1-0.9 2-2 2H315.8c-29.5 0-56.1 16.3-69.5 42.6l-76.3 150c-9.2 18.1-8.4 39.3 2.2 56.6 10.3 16.8 27.9 27 47.4 27.6-4.8 101-38.3 205.9-90.2 279.5-12.5 17.8-14.1 40.8-4.1 60.1 10 19.3 29.7 31.3 51.5 31.3h601.5c35 0 66-23.6 75.2-57.4 15.5-56.5 28.4-107.9 29.4-164.9C884 685 874 636 852.9 589c19-1.1 36.1-11.2 46.2-27.6 10.6-17.3 11.4-38.5 2.2-56.6z m-681.4 25.4l76.3-150c3.8-7.4 11.3-12 19.6-12h116.4c32 0 58-26 58-58V120.6c0-0.1 0.2-0.3 0.3-0.3h90c0.1 0 0.3 0.2 0.3 0.3v189.6c0 32 26 58 58 58h116.4c8.3 0 15.8 4.6 19.6 12l76.3 150c0.2 0.3 0.5 1-0.1 2s-1.3 1-1.7 1H221.7c-0.4 0-1.1 0-1.7-1-0.6-1-0.3-1.7-0.1-2zM827 736.6c-0.9 50.5-12.9 98.3-27.4 151.1-2.6 9.5-11.3 16.2-21.2 16.2H651.8c11.3-22.3 18.5-44 23.1-61.2 7.1-26.7 10.7-53.5 10.6-78-0.1-17.1-15.5-30.1-32.4-27.4-13.6 2.2-23.6 14-23.6 27.8 0.1 42.7-14.1 98.2-42.7 138.8H406.2c15.2-21.7 26.1-43.8 33.6-61.9 10-24.3 17.4-49.7 21.2-72.5 2.8-17-10.4-32.5-27.6-32.5-13.6 0-25.3 9.8-27.6 23.3-2.8 16.6-8.3 37.7-17.7 60.4-10.1 24.6-27.8 58.1-55.6 83.3H176.9c-0.5 0-1.2 0-1.8-1.1-0.6-1.1-0.2-1.6 0.1-2 29.7-42.1 54.8-94.5 72.5-151.4 16.2-52.1 25.7-106.9 28-160.3h514.6C816 635.6 828 684 827 736.6z" fill="#ffffff" p-id="1794"></path></svg>';
  94. let sureClearButtonSvg = '<svg t="1722633889519" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3987" width="24" height="24"><path d="M675.328 117.717333A425.429333 425.429333 0 0 0 512 85.333333C276.352 85.333333 85.333333 276.352 85.333333 512s191.018667 426.666667 426.666667 426.666667 426.666667-191.018667 426.666667-426.666667c0-56.746667-11.093333-112-32.384-163.328a21.333333 21.333333 0 0 0-39.402667 16.341333A382.762667 382.762667 0 0 1 896 512c0 212.074667-171.925333 384-384 384S128 724.074667 128 512 299.925333 128 512 128c51.114667 0 100.8 9.984 146.986667 29.12a21.333333 21.333333 0 0 0 16.341333-39.402667z m-213.333333 468.608l-105.664-105.642666a21.248 21.248 0 0 0-30.122667 0.042666c-8.32 8.32-8.213333 21.973333-0.064 30.101334l120.810667 120.832a21.248 21.248 0 0 0 30.122666-0.085334l211.157334-211.157333a21.290667 21.290667 0 0 0 0-30.186667 21.397333 21.397333 0 0 0-30.250667 0.106667l-196.010667 195.989333z" fill="#ffffff" p-id="3988"></path></svg>';
  95. let oneBtn = await global_module.waitForElement('nav[aria-label]', null, null, 100, -1);
  96. oneBtn = oneBtn.find('button').eq(0);
  97. let newBtn = global_module.cloneAndHide(oneBtn[0]);
  98. newBtn = $(newBtn).eq(0).attr('status', 0);
  99. oneBtn.show();
  100. newBtn.find('svg').remove();
  101. newBtn.append(clearButtonSvg);
  102. newBtn.off('click').on('click', async () => {
  103. let status = newBtn.attr('status');
  104. newBtn.attr('disabled', 'disabled');
  105. if (status == 0) {
  106. newBtn.attr('status', 1);
  107. newBtn.find('svg').remove();
  108. newBtn.append(sureClearButtonSvg);
  109. } else {
  110. newBtn.attr('status', 0);
  111. newBtn.find('svg').remove();
  112. newBtn.append(clearButtonSvg);
  113. await clearAllConversations();
  114. }
  115. newBtn.removeAttr('disabled');
  116. });
  117. resolve();
  118. });
  119. }
  120. await initSession();
  121. initClearButton();
  122. })();
  123.  
  124. var HookFun = new Map();
  125.  
  126. function handleResponse(request) {
  127. if (!request) {
  128. return;
  129. }
  130. if (request.url.indexOf(ignoreHookStr) != -1) {
  131. return;
  132. }
  133. let tempUrl = request.url;
  134. if (tempUrl.indexOf('http') == -1 && tempUrl[0] == '/') {
  135. tempUrl = location.origin + tempUrl;
  136. }
  137. let pathname = new URL(tempUrl).pathname;
  138. let fun = HookFun.get(pathname);
  139. if (!fun) {
  140. return;
  141. }
  142. fun(request, null, null, 'preload');
  143. request.response = (res) => {
  144. let Type = 0;
  145. let responseText = res.responseText;
  146. if (typeof responseText !== 'string') {
  147. Type = 1;
  148. responseText = res.text;
  149. }
  150. if (typeof responseText !== 'string') {
  151. Type = 2;
  152. responseText = JSON.stringify(res.json);
  153. }
  154. const oldText = responseText;
  155. res.responseText = new Promise(async (resolve) => {
  156. let ret = await fun(request, res, responseText, 'done');
  157. if (!ret) {
  158. ret = oldText;
  159. }
  160. if (Type === 2) {
  161. if (typeof ret === 'string') {
  162. ret = JSON.parse(ret);
  163. }
  164. }
  165. resolve(ret);
  166. });
  167. };
  168. }
  169.  
  170. // eslint-disable-next-line no-undef
  171. ajaxHooker.hook(handleResponse);