-
Notifications
You must be signed in to change notification settings - Fork 17
/
easyfill_tampermonkey_script.js
1280 lines (1095 loc) · 43.1 KB
/
easyfill_tampermonkey_script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @name EasyFill
// @namespace http://easyfill.tool.elfe/
// @version 0.9
// @description 超级方便的 GPT 对话助手,通过划选或点击,把内容填充到预置 prompt 模版直接发送。支持多个功能组设置。
// @author Elfe & ttmouse & GPT
// @match https://chat.openai.com/*
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAAAAABWESUoAAABX2lDQ1BJQ0MgUHJvZmlsZQAAeJxtkLFLAmEYxh/NEI6LFCIaghyiycLOgla1qMDh0ARrO8/rDPT8uLuQtoJaQ6ihtrClsakWh9amgqAhotr6AyIXk+v9vEqtvo+X58fD+768PIBXVBgr+gCUDNtMLcZD2dW1kP8VArwYQBCColosJstJasG39r7GPTxc7yb5ruB+9rop1dM7lef4WOD86G9/zxPymqWSflBJKjNtwBMhlis247xNPGTSUcSHnHWXzzjnXK63e1ZSCeJb4oBaUPLEL8ThXJevd3GpuKl+3cCvFzUjkyYdphrFPBaQpB9CBhJmMU21RBn9PzPTnkmgDIYtmNiAjgJsmo6Rw1CERrwMAyqmECaWEKGK8qx/Z9jxyjVg7h3oq3a83DFwuQeMPHS88RNgcBe4uGGKqfwk62n4rPWo5LIYB/qfHOdtAvAfAK2q4zRrjtM6pf2PwJXxCXhkY9XHGXyzAAAAVmVYSWZNTQAqAAAACAABh2kABAAAAAEAAAAaAAAAAAADkoYABwAAABIAAABEoAIABAAAAAEAAAEgoAMABAAAAAEAAAEgAAAAAEFTQ0lJAAAAU2NyZWVuc2hvdPDFp1oAAABUSURBVHic3VFBDgAgCMLW/79M1wiX1TFuAhOcwK/gPLTKnRhYGFRH38u2gQAQMxOmK6MjTU4LUHpkJWWLlAw/oi65RhQlPeHpWduMO/sZ1l84+QUG1/URFizO5xoAAAAASUVORK5CYII=
// @grant none
// ==/UserScript==
// Copyright (c) 2023 ElfeXu (Xu Yanfei)
// Licensed under the MIT License.
const setting_usage_text = `使用说明
通过 🪄 分隔按钮
📖 之后的是直接在原文替代成链接的内容
🪄🪄🪄🪄🪄🪄🪄🪄
功能一
这里是预设的 prompt ,{__PLACE_HOLDER__} 里的内容会被你鼠标选中的文字替代掉。
🪄🪄🪄🪄🪄🪄🪄🪄
功能二
点击菜单文字可以直接发送,点击右边会把 prompt 填充到输入框,可以编辑后再发送。
🪄🪄🪄🪄🪄🪄🪄🪄
CLICK 示范
通过要求 GPT 以特定格式生成内容,可以将内容转化成链接,点击即直接发送。例如
请给我五个和有水关的英文单词,用两个方括号 [[]] 来标记。
再用列表的方式给出三个和水有关的节日,节日名称写在 💦 💦 之间
📖📖📖📖📖📖📖📖
\[\[(.*?)\]\]
请帮我解释一下{__PLACE_HOLDER__}这个词的意思
📖📖📖📖📖📖📖📖
💦(.*?)💦
请帮我详细介绍一下{__PLACE_HOLDER__}。
`
const setting_new_setting_text = `新功能组名称
这里可以填写功能组使用说明
通过 🪄 分隔按钮
🪄🪄🪄🪄🪄🪄🪄🪄
第一行是按钮名称
第二行开始是prompt。{__PLACE_HOLDER__} 里的内容会被你鼠标选中的文字替代掉。
🪄🪄🪄🪄🪄🪄🪄🪄
第二个功能
第二个prompt
prompt多长都没关系
各种奇怪字符也都可以用
只根据连续八个🪄来分隔功能
📖📖📖📖📖📖📖📖
\[\[(.*?)\]\]
在按钮之后可以用八个📖分隔,带上点击直接发送的内容。
第一行是正则匹配,后面是模版。匹配到的内容会替代掉{__PLACE_HOLDER__}中的内容然后被直接发送。
`;
const default_setting_texts = [
`英语练习
先点启动,再贴大段文章,然后需要干啥就选中了文字点啥功能
🪄🪄🪄🪄🪄🪄🪄🪄
启动
你是我的英语老师,我需要你陪我练习英语,准备托福考试。
请**用英语和我对话**,涉及英语例句、题目和话题探讨时请用托福水平的书面英语,但在我明确提出需要时切换到中文。
为了让我的学习更愉悦,请用轻松的语气,并添加一些 emoji。
接下来我会给你一篇英文文章,请记住文章,然后我会向你请求帮助。
如果你理解了,请说 Let's begin!
🪄🪄🪄🪄🪄🪄🪄🪄
英译中
请帮我把下面这段话翻译直译成中文,不要遗漏任何信息。
然后请判断文字是否符合中文表达习惯,如果不太符合,请重新意译,在遵循愿意的前提下让内容更通俗易懂。
输出格式应该是
直译:直译的内容
---
(如果有必要的话)意译:意译的内容
待翻译的内容:
'''
{__PLACE_HOLDER__}
'''
🪄🪄🪄🪄🪄🪄🪄🪄
中译英
请帮我用最地道的方式帮我把下面这段话翻译成英文。
待翻译的内容:
'''
{__PLACE_HOLDER__}
'''
🪄🪄🪄🪄🪄🪄🪄🪄
学单词
'''
{__PLACE_HOLDER__}
'''
请帮我学习这个单词
1. 请给出单词的音标、词性、中文意思、英文意思
2. 如果我们前面的讨论中出现过这个单词,请结合它的上下文,重点讲解在上下文中单词的意思和用法
3. 请给出更多例句
4. 如果有容易混淆的单词,请给出对比
🪄🪄🪄🪄🪄🪄🪄🪄
深入解释
我不太理解这段文字的具体含义,能否结合上下文,给我一个更深入的中文解释?
解释时请着重讲解其中有难度的字词句。
如果有可能,请为我提供背景知识以及你的观点。
'''
{__PLACE_HOLDER__}
'''
🪄🪄🪄🪄🪄🪄🪄🪄
封闭题
请对下面这段文字,按照托福阅读理解的难度,用英文为我出三道有标准答案的问答题。
请等待我回答后,再告诉我标准答案,并加以解释。
'''
{__PLACE_HOLDER__}
'''
🪄🪄🪄🪄🪄🪄🪄🪄
开放题
请对下面这段文字,按照托福口语和作文的难度,用英文为我出一道开放题,我们来进行探讨。
'''
{__PLACE_HOLDER__}
'''
`,
`
文字配插图
先提取文字中要素,然后配一张黑白插图
通过 🪄 分隔按钮
🪄🪄🪄🪄🪄🪄🪄🪄
提取要素
&g-rzeBPKJPI 请对这段内容提取要素,给出插图方案:
{__PLACE_HOLDER__}
注意:每个方案一行字,并且用 🏞️ 🏞️ 括号起来
例如:
方案1:
🏞️可爱猫咪玩毛线球:画面最前方一个毛线球。后面有一只正屁股后撅、蓄力扑向毛球的猫咪。🏞️
🪄🪄🪄🪄🪄🪄🪄🪄
画插图
&g-Qs1wbwJEP 请根据这个设计,画一张插图
{__PLACE_HOLDER__}
📖📖📖📖📖📖📖📖
🏞️(.*?)🏞️
&g-Qs1wbwJEP 请根据这个设计,画一张插图
{__PLACE_HOLDER__}
`,
setting_usage_text
];
const LSID_SETTING_TEXTS = 'setting_texts_v0.4';
const LSID_SETTING_CURRENT_INDEX = 'setting_current_index_v0.4';
const LSID_MENU_MODE = 'setting_menu_mode'
const LSID_CONTEXT_MENU_PINNED = 'context_menu_pinned';
////////////////////////// CSS //////////////////////////
const style = `
.settings-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.settings-content {
background-color: #f0f1ee;
color: #535e5e;
padding: 20px;
width: 50%;
height: 80%;
overflow-y: auto;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
display: flex;
flex-direction: column;
padding: 20px;
gap: 10px;
}
.buttonsContainer {
display: flex;
justify-content: space-between;
align-items: center; /* 确保子元素在垂直方向上居中 */
width: 100%;
}
.settings-dropdown {
outline: none;
border: 0px;
}
.settings-input {
width: 100%;
padding: 8px 20px;
background-color: #fff;
color: #000;
border: 0;
border-radius: 5px;
}
.settings-textarea {
width: 100%;
height: calc(100% - 60px);
resize: vertical;
background-color: #fff;
color: #000;
border-radius: 0.75em;
border: 0px;
padding: 18px 18px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.024) 0px 0px 5px, rgba(0, 0, 0, 0.05) 0px 1px 2px;
}
.settings-button {
background-color: #469c7b;
color: #fff;
padding: 8px 18px;
border: none;
border-radius: 30px;
cursor: pointer;
margin: 0 5px;
}
.settings-button:hover {
background-color: #93B1A6;
}
.settings-button:disabled {
background-color: #B4B4B3; /* 灰色背景 */
color: #808080; /* 深灰色文字 */
cursor: not-allowed; /* 禁用的光标样式 */
}
.setting-confirm {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #f0f1ee;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: none;
flex-direction: column;
gap: 10px;
padding: 20px;
z-index: 2000;
}
.confirm-content {
color: #535e5e;
display: flex;
flex-direction: column;
gap: 10px;
}
#contextMenu {
display: none;
position: absolute;
}
.pinned-menu {
position: fixed;
right: 10px;
top: 50%;
transform: translateY(-50%); /* 这将使元素垂直居中,无论其高度是多少 */
}
#menuContainer {
width: auto;
display: inline-block;
background-color: #fff;
color: #000;
border-radius: 0.55em;
padding: 5px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.1) 0px 2px 5px, rgba(0, 0, 0, 0.05) 0px 3px 3px;
border-bottom: 1px solid #f0f0f0;
}
#menuContainer div {
display: flex;
align-items: center;
width: auto;
padding: 2px 0;
margin: 0px;
}
#menuContainer div.menu-title {
display: flex;
align-items: center;
justify-content: center;
padding: 5px 0;
font-weight: bold;
cursor: pointer;
}
#menuContainer div.menu-separator {
width: 100%;
height: 1px;
background-color: #f0f0f0;
margin: 2px 0;
padding: 0px 10px;
}
#menuContainer div.menu-item {
display: flex;
align-items: center;
width: auto;
max-width: 200px;
min-width: 120px;
padding: 0 0;
margin: 0 5px;
}
#menuContainer button.menu-button {
border: none;
background: none;
padding: 5px 10px;
margin: 0;
white-space: nowrap;
border-radius: 5px;
transition: background-color 0.3s ease;
}
#menuContainer button.menu-button:hover {
background-color: #469c7b5c;
}
#menuContainer button.menu-button:disabled {
height: 1px;
color: #c6c6c600;
padding: 0;
border-bottom: 1px solid #dddddd8c;
}
#menuContainer button.menu-button:disabled:hover {
background: none;
}
#menuContainer button.left-part {
flex-grow: 1;
flex-shrink: 0;
flex-basis: auto;
max-width: 160px;
text-align: left;
overflow: hidden; /* 这会确保内容被裁剪 */
white-space: nowrap; /* 防止文本换行 */
text-overflow: ellipsis;/* 超出的文本将显示为... */
}
#menuContainer button.right-part {
flex-grow: 0;
flex-shrink: 0;
width: 40px;
text-align: right;
}
#menuContainer button.icon {
width: 24px;
height: 24px;
}
#groupSelectList {
border: 0px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
display: flex;
flex-direction: column;
z-index: 1000;
background-color: #fff;
color: #000;
}
#groupSelectList div {
padding: 5px;
cursor: pointer;
transition: background-color 0.2s;
background-color: #fff;
color: #000;
padding: 5px 20px;
}
#groupSelectList div:hover {
background-color: #469c7b5c;
}
/* 使链接看起来更像链接 */
.custom-link {
text-decoration: underline;
cursor: pointer; /* 当鼠标放上去时变成手的样子 */
position: relative; /* 为了定位 tooltip */
}
/* 提示(tooltip)样式 */
.custom-link:hover::after {
content: attr(data-text); /* 显示 data-text 的内容 */
position: absolute;
bottom: 100%; /* 出现在链接的上方 */
left: 0; /* 与链接的左边界对齐 */
width: max-content; /* 根据内容设置宽度 */
max-width: 300px; /* 设置最大宽度 */
white-space: normal; /* 允许文本换行 */
line-height: 18px;
max-height: 120px;
overflow: hidden;
background-color: #333; /* 背景色 */
color: white; /* 文字颜色 */
padding: 5px 10px; /* 内边距 */
border-radius: 4px; /* 边框圆角 */
font-size: 12px; /* 文字大小 */
z-index: 10; /* 保证 tooltip 出现在其他元素的上方 */
}
/* 添加一个小三角形在 tooltip 的下方 */
.custom-link:hover::before {
content: '';
position: absolute;
bottom: -5px; /* 出现在 tooltip 的正下方 */
left: calc(50% + 5px); /* 让小三角形出现在链接的中央 */
width: 10px; /* 宽度 */
height: 10px; /* 高度 */
background-color: #333; /* 与 tooltip 的背景色相同 */
z-index: 9; /* 出现在 tooltip 下方 */
}
`;
const svgEditBeforeSend = "M896 128.426667H128c-47.146667 0-85.333333 38.186667-85.333333 85.333333V384h85.333333V212.906667h768v598.613333H128V640H42.666667v171.093333c0 47.146667 38.186667 84.48 85.333333 84.48h768c47.146667 0 85.333333-37.546667 85.333333-84.48v-597.333333c0-47.146667-38.186667-85.333333-85.333333-85.333333zM469.333333 682.666667l170.666667-170.666667-170.666667-170.666667v128H42.666667v85.333334h426.666666v128z";
const styleElement = document.createElement('style');
styleElement.innerHTML = style;
document.head.appendChild(styleElement);
////////////////////////// Send Prompt functions //////////////////////////
let setting_texts = JSON.parse(localStorage.getItem(LSID_SETTING_TEXTS)) || default_setting_texts;
let setting_current_index = localStorage.getItem(LSID_SETTING_CURRENT_INDEX) || 0;
let current_setting_text = setting_texts[setting_current_index];
let menu_mode = localStorage.getItem(LSID_MENU_MODE) || ''; // 后续还可以支持更多自定义模式。目前 '' 代表默认模式,即点击鼠标直接出菜单;非 '' ('shift')代表需要同时按住 shift 键才会出菜单
let isMenuPinned = localStorage.getItem(LSID_CONTEXT_MENU_PINNED) || false;
function replace_all_textarea(text) {
// 查找所有匹配按钮文本 "Save & Submit" 的 div
let buttons = Array.from(document.querySelectorAll('div.flex.w-full.gap-2.items-center.justify-center'));
buttons.forEach(button => {
// 检查按钮文本是否为 "Save & Submit"
if (button.textContent.trim() === 'Save & Submit') {
// 向上查找其祖先元素,直到找到一个拥有 `flex flex-grow flex-col gap-3 max-w-full` 这个 class 的 div
let parentDiv = button.closest('.flex.flex-grow.flex-col.gap-3.max-w-full');
if (parentDiv) {
// 在这个祖先 div 内,查找 `textarea` 元素
let textarea = parentDiv.querySelector('textarea');
if (textarea) {
// 替换这个 `textarea` 的内容为 "TEMPLATE_TEXT"
textarea.value = text;
const inputEvent = new Event('input', { 'bubbles': true });
textarea.dispatchEvent(inputEvent);
}
}
}
});
}
async function sendToGPT(template, selectedText, sendDirectly) {
let placeholderPosition = template.indexOf('{__PLACE_HOLDER__}');
let finalText = template.replace('{__PLACE_HOLDER__}', selectedText);
if (!sendDirectly) {
replace_all_textarea(finalText);
}
const inputElement = document.getElementById('prompt-textarea');
inputElement.value = finalText;
const inputEvent = new Event('input', { 'bubbles': true });
inputElement.dispatchEvent(inputEvent);
await new Promise(resolve => setTimeout(resolve, 50));
if (sendDirectly) {
const sendButton = document.querySelector('[data-testid="send-button"]');
if (sendButton) {
sendButton.click();
}
inputElement.focus();
} else {
inputElement.focus();
// 设置光标位置
let cursorPosition;
if (placeholderPosition !== -1) {
// 将光标放在替换文本的结束位置
if (selectedText) {
cursorPosition = placeholderPosition + selectedText.length;
} else {
cursorPosition = placeholderPosition;
}
} else {
cursorPosition = inputElement.value.length; // 光标放在文本末尾
}
inputElement.setSelectionRange(cursorPosition, cursorPosition);
}
}
////////////////////////// Context Menu functions //////////////////////////
// 创建上下文菜单
const contextMenu = document.createElement('div');
const menuContainer = document.createElement('div');
let isGroupSelectListShown = false;
function menuMode() {
return menu_mode;
}
function menuModeText() {
if (menuMode() == '') {
return '快捷模式'
} else {
return 'Shift模式'
}
}
function switchMode() {
if (menuMode() == '') {
menu_mode = 'shift';
} else {
menu_mode = '';
}
localStorage.setItem(LSID_MENU_MODE, menu_mode);
}
function createPathElement(svgPathData) {
// 创建一个`path`元素并设置SVG路径数据
const pathElement = document.createElementNS("http://www.w3.org/2000/svg", "path");
pathElement.setAttribute("d", svgPathData);
pathElement.setAttribute("fill", "#5D5D5D");
return pathElement;
}
function createPinButton() {
const pinButton = document.createElement('button');
pinButton.innerHTML = '📌'; // 使用pin emoji作为按钮的内容
pinButton.style.position = 'absolute';
pinButton.style.right = '5px';
pinButton.style.top = '5px';
if (isMenuPinned) {
pinButton.innerHTML = '🔓';
menuContainer.classList.add('pinned-menu');
}
pinButton.onclick = function() {
isMenuPinned = !isMenuPinned;
localStorage.setItem(LSID_CONTEXT_MENU_PINNED, isMenuPinned);
pinButton.innerHTML = isMenuPinned ? '🔓' : '📌';
if (isMenuPinned) {
menuContainer.classList.add('pinned-menu');
} else {
menuContainer.classList.remove('pinned-menu');
}
};
return pinButton;
}
function createMenuTitle() {
const menuTitle = document.createElement('div');
menuTitle.classList.add('menu-title');
menuTitle.innerHTML = setting_current_index;
menuTitle.innerHTML = setting_texts[setting_current_index].split('\n')[0];
menuTitle.addEventListener('mouseup', function(e) {
e.stopPropagation(); // 阻止事件冒泡
let dropdown = document.getElementById('groupSelectList');
if (dropdown) {
dropdown.remove(); // 如果下拉列表已经存在,那么移除它
isGroupSelectListShown = false;
} else {
createGroupSelectList();
isGroupSelectListShown = true;
}
});
return menuTitle;
}
function createMenuSeparator() {
const separator = document.createElement('div');
separator.classList.add('menu-separator');
return separator;
}
// 创建单个菜单项
function createMenuItem(label, icon, action1, action2) {
const menuItem = document.createElement('div');
menuItem.classList.add('menu-item');
const leftPart = document.createElement('button');
leftPart.classList.add('menu-button', 'left-part');
leftPart.innerHTML = label;
if (action1 == null) {
leftPart.disabled = true;
} else {
leftPart.onclick = () => {
action1();
hideContextMenu();
};
}
menuItem.appendChild(leftPart);
if (action2 != null) {
const rightPart = document.createElement('button')
rightPart.classList.add('menu-button', 'right-part');
if (icon != null) {
// 创建一个SVG元素并设置属性
const rightIcon = document.createElementNS("http://www.w3.org/2000/svg", "svg");
rightIcon.setAttribute("viewBox", "0 0 1024 1024"); // 这个属性需要保留在这里
rightIcon.classList.add("icon");
rightIcon.appendChild(createPathElement(icon));
rightPart.appendChild(rightIcon);
} else {
rightPart.innerHTML = '≋';
}
rightPart.onclick = () => {
action2();
hideContextMenu();
};
menuItem.appendChild(rightPart);
}
return menuItem;
}
function hideContextMenu() {
if (isMenuPinned || isGroupSelectListShown) {
return;
}
contextMenu.style.display = 'none';
}
function showContextMenu(event) {
const margin = 20;
const width = contextMenu.offsetWidth + margin;
const height = contextMenu.offsetHeight + margin;
const windowWidth = window.innerWidth;
const windowHeight = window.innerHeight;
if (event) {
// 如果菜单超出了右侧窗口边缘
if (event.clientX + width > windowWidth) {
contextMenu.style.left = `${windowWidth - width}px`;
} else {
contextMenu.style.left = `${event.clientX}px`;
}
// 如果菜单超出了底部窗口边缘
if (event.clientY + height > windowHeight) {
contextMenu.style.top = `${windowHeight - height}px`;
} else {
contextMenu.style.top = `${event.clientY}px`;
}
}
contextMenu.style.display = 'block';
}
function updateMenuItems() {
parseSettingsText(current_setting_text);
menuContainer.innerHTML = '';
menuContainer.appendChild(createPinButton());
menuContainer.appendChild(createMenuTitle());
menuContainer.appendChild(createMenuSeparator());
menus.forEach((menu, index) => {
menuContainer.appendChild(
createMenuItem(
menu[0],
svgEditBeforeSend,
async function() {
await sendToGPT(menu[1], window.getSelection().toString().trim(), true);
},
async function() {
await sendToGPT(menu[1], window.getSelection().toString().trim(), false);
},
));
});
menuContainer.appendChild(createMenuSeparator());
menuContainer.appendChild(createMenuItem('设置', null, function() {showSettingsModal();}, null));
menuContainer.appendChild(createMenuItem('添加为模版', null, function() {showAddTemplateModal(window.getSelection().toString().trim());}, null));
}
function isMenuVisible() {
return contextMenu.style.display == 'block';
}
function shouldResponseForContextMenu(event) {
if (isMenuPinned) {
if (!isMenuVisible()) {
// Should not be here. Just to make sure pin is removed if menu is not visible.
isMenuPinned = false;
}
return false;
}
// 查找 settings-modal,如果 settings-modal 存在,就不响应右键菜单
const settingsModal = document.querySelector('.settings-modal');
if (settingsModal) {
return false;
}
if (menuMode() != '' && !event.shiftKey) {
return false;
}
return true;
}
function initContextMenu() {
contextMenu.id = 'contextMenu';
menuContainer.id = 'menuContainer';
contextMenu.appendChild(menuContainer);
document.body.appendChild(contextMenu);
updateMenuItems();
document.addEventListener('mouseup', function(event) {
if (!shouldResponseForContextMenu(event)) {
return;
}
const selectedText = window.getSelection().toString();
if (selectedText.length == 0) {
hideContextMenu();
} else {
showContextMenu(event);
}
});
document.addEventListener('dblclick', function(event) {
if (!shouldResponseForContextMenu(event)) {
return;
}
showContextMenu(event);
});
document.addEventListener('keydown', (event) => {
if (event.key === 'Escape') {
hideContextMenu();
}
});
if(isMenuPinned) {
showContextMenu(null);
}
}
////////////////////////// Menu Click&choose //////////////////////////
// setting_texts.forEach((text, index) => {
// const option = document.createElement('option');
// option.value = index;
// option.text = text.split('\n')[0]; // Assuming the first line is a title or identifier
// settingsDropdown.appendChild(option);
// });
// settingsDropdown.selectedIndex = setting_current_index;
// settingsDropdown.addEventListener('change', (e) => {
// const selectedIndex = e.target.value;
// textarea.value = setting_texts[selectedIndex];
// if (setting_texts.length <= 1) {
// deleteSettingButton.disabled = true;
// } else {
// deleteSettingButton.disabled = false;
// }
// });
function createGroupSelectList() {
const dropdown = document.createElement('div');
dropdown.id = 'groupSelectList';
dropdown.style.maxHeight = '500px';
dropdown.style.overflowY = 'auto';
dropdown.style.position = 'fixed'; // 使用固定定位
setting_texts.forEach((text, index) => {
const item = document.createElement('div');
item.innerText = text.split('\n')[0]; // Assuming the first line is a title or identifier
item.addEventListener('click', function() {
setting_current_index = index;
localStorage.setItem(LSID_SETTING_CURRENT_INDEX, setting_current_index);
current_setting_text = setting_texts[setting_current_index];
updateMenuItems();
dropdown.remove(); // 选择后,移除下拉列表
isGroupSelectListShown = false;
showContextMenu(null);
});
dropdown.appendChild(item);
});
const rect = menuContainer.getBoundingClientRect();
// 先将dropdown添加到文档中,但将其设置为不可见
dropdown.style.visibility = 'hidden';
document.body.appendChild(dropdown);
// 现在我们可以获取其实际尺寸了
const dropdownRect = dropdown.getBoundingClientRect();
dropdown.style.top = rect.top + 'px';
dropdown.style.left = (rect.left - dropdownRect.width) + 'px';
// 然后再将其设置为可见
dropdown.style.visibility = 'visible';
isGroupSelectListShown = true;
}
////////////////////////// Easy Click functions //////////////////////////
let intervalID;
// 点击事件处理器
async function clickHandler(event) {
//event.preventDefault();
console.log('执行 clickHandler'); // 执行点击事件处理器
const inputElement = document.getElementById('prompt-textarea'); // 获取输入框
console.log('[Debug] 获取输入框元素');
inputElement.value = this.getAttribute("data-text"); // 将链接文本添加到输入框
console.log('[Debug] 设置输入框值');
const inputEvent = new Event('input', { 'bubbles': true }); // 创建input事件
console.log('[Debug] 创建 input 事件');
inputElement.dispatchEvent(inputEvent); // 触发input事件
console.log('[Debug] 触发 input 事件');
await new Promise(resolve => setTimeout(resolve, 50));
console.log('[Debug] 50ms 延时完成');
const sendButton = document.querySelector('[data-testid="send-button"]');
console.log('[Debug] 获取发送按钮');
if (sendButton) {
console.log('点击发送按钮');
sendButton.click();
console.log('[Debug] 开启监听');
}
}
function escapeHtml(unsafe) {
return unsafe
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """)
.replace(/'/g, "'");
}
function replace_text(original) {
clicks.forEach(([regExpression, template]) => {
original = original.replace(regExpression, (match, p1) => {
// 使用模板替换找到的匹配项
let replaced = template.replace(/{__PLACE_HOLDER__}/g, p1);
replaced = escapeHtml(replaced);
if (template.includes('{__PLACE_HOLDER__}')) {
return `<a class="custom-link" data-text="${replaced}">${p1}</a>`;
} else {
return `<a class="custom-link" data-text="${replaced}">${regExpression.source}</a>`;
}
});
});
return original;
}
// 处理元素
function processElement(element) {
const hidden_characters = "\u200B\u200B\u200B\u200B\u200B\u200B";
let innerHTML = element.innerHTML;
if (innerHTML.startsWith(hidden_characters)) {
return; // 不重复处理
}
innerHTML = replace_text(innerHTML);
// 替换了 innerHTML 后,原本网页中 Copy code 之类的事件监听就失效了。
// 为了尽可能让两个功能共存,这里仅对文字有改动的重新赋值。
if (innerHTML != element.innerHTML) {
element.innerHTML = hidden_characters + innerHTML; // 添加隐藏字符,避免重复处理
}
// 给新生成的链接添加事件监听
const customLinks = element.querySelectorAll('.custom-link');
customLinks.forEach(link => {
link.addEventListener('click', clickHandler);
});
}
function processAllElements() {
// 使用数据属性来找到父级元素
const parentElements = document.querySelectorAll('[data-message-author-role="assistant"]');
parentElements.forEach(parent => {
// 在父级元素下面找到特定的子元素,例如类名为 `markdown` 和 `prose` 的 `div`
const chatRecordElements = parent.querySelectorAll('div.markdown.prose.w-full.break-words');
chatRecordElements.forEach(processElement);
});
}
let rerunTimeout;
// 这个部分是用来检测GPT是否在更新的
function checkUpdateStatus() {
if (rerunTimeout) {
clearTimeout(rerunTimeout); // 清除延时
console.log('[Debug] 清除之前的延时');
}
// 设置延时,等待0.5秒
rerunTimeout = setTimeout(processAllElements, 500);
}
////////////////////////// Settings functions //////////////////////////
function closeModal(settingConfirm) {
settingConfirm.style.display = 'flex';
}
function createConfirmModal(modal) {
const settingConfirm = document.createElement('div');
settingConfirm.className = 'setting-confirm';
const confirmContent = document.createElement('div');
confirmContent.className = 'confirm-content';
const confirmText = document.createElement('p');
confirmText.textContent = '确定放弃修改?';
const confirmYes = document.createElement('button');
confirmYes.className = 'settings-button';
confirmYes.textContent = '确定';
const confirmNo = document.createElement('button');
confirmNo.className = 'settings-button';
confirmNo.textContent = '取消';
confirmYes.onclick = function() {
modal.remove();
settingConfirm.style.display = 'none'; // Hide the confirm box
}
confirmNo.onclick = function() {
settingConfirm.style.display = 'none'; // Hide the confirm box
}
confirmContent.appendChild(confirmText);
confirmContent.appendChild(confirmYes);
confirmContent.appendChild(confirmNo);
settingConfirm.appendChild(confirmContent);
return settingConfirm;
}
function showSettingsModal() {
const modal = document.createElement('div');
modal.className = 'settings-modal';
const modalContent = document.createElement('div');
modalContent.className = 'settings-content';
const textarea = document.createElement('textarea');
textarea.className = 'settings-textarea';
textarea.value = current_setting_text;
const submitButton = document.createElement('button');
submitButton.className = 'settings-button';
submitButton.textContent = '保存设置';
const cancelButton = document.createElement('button');
cancelButton.className = 'settings-button';
cancelButton.textContent = '取消修改';
const settingsDropdown = document.createElement('select');
settingsDropdown.className = 'settings-dropdown';
setting_texts.forEach((text, index) => {
const option = document.createElement('option');
option.value = index;
option.text = text.split('\n')[0]; // Assuming the first line is a title or identifier
settingsDropdown.appendChild(option);
});
settingsDropdown.selectedIndex = setting_current_index;
settingsDropdown.addEventListener('change', (e) => {
const selectedIndex = e.target.value;
textarea.value = setting_texts[selectedIndex];
if (setting_texts.length <= 1) {
deleteSettingButton.disabled = true;
} else {
deleteSettingButton.disabled = false;
}
});
const newSettingButton = document.createElement('button');
newSettingButton.textContent = '添加新功能组';