-
Notifications
You must be signed in to change notification settings - Fork 158
/
config.json
428 lines (428 loc) · 37.7 KB
/
config.json
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
{
"AiConfig": [
{
"id": 1,
"name": "ChatGPT",
"url": "https://chatgpt.com/",
"script": "(function(){var e=document.querySelector('.ProseMirror');var p=document.createElement('p');p.textContent='[message]';e.innerHTML='';e.appendChild(p);e.dispatchEvent(new Event('input',{bubbles:true}));setTimeout(function(){var s=document.querySelector('button[data-testid=\"send-button\"]');if(s){s.disabled=false;s.click();}},1000);})();",
"iniScript": "alert(0)"
},
{
"id": 2,
"name": "Gemini",
"url": "https://gemini.google.com/",
"script": "(function(p, btn) { p.innerText = '[message]', setTimeout(function() { btn.click(); }, 500); })(document.querySelector('.ql-editor.textarea > p'), document.querySelector('.send-button.mdc-icon-button'));",
"iniScript": ""
},
{
"id": 3,
"name": "Copilot",
"url": "https://www.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx",
"script": "(document.querySelector('cib-serp').shadowRoot.querySelector('#cib-action-bar-main').shadowRoot.querySelector('cib-text-input').shadowRoot.querySelector('#searchbox').value = '[message]', document.querySelector('cib-serp').shadowRoot.querySelector('#cib-action-bar-main').shadowRoot.querySelector('cib-text-input').shadowRoot.querySelector('#searchbox').dispatchEvent(new Event('input', {bubbles: true })), document.querySelector('cib-serp').shadowRoot.querySelector('#cib-action-bar-main').shadowRoot.querySelector('cib-text-input').shadowRoot.querySelector('#searchbox').dispatchEvent(new KeyboardEvent('keydown', {key: 'Enter' })));",
"iniScript": ""
},
{
"id": 4,
"name": "Claude",
"url": "https://claude.ai/chats",
"script": "(function(){const e=document.querySelector('p[data-placeholder=\"Message Claude...\"]');if(!e)return console.error('Input element not found');const t='[message]',n=document.createTextNode(t);e.innerHTML='';e.appendChild(n);const o=new Event('input',{bubbles:!0,cancelable:!0});e.dispatchEvent(o);['change','keydown','keypress','keyup'].forEach(t=>{e.dispatchEvent(new Event(t,{bubbles:!0,cancelable:!0}))});e.dispatchEvent(new KeyboardEvent('keydown',{bubbles:!0,cancelable:!0,key:'Enter',keyCode:13,which:13}));setTimeout(()=>{const t=document.querySelector('button[aria-label=\"Send Message\"]');t?t.click():console.error('Send button not found')},500)})();",
"iniScript": ""
},
{
"id": 103045,
"name": "Deepseek coder",
"url": "https://chat.deepseek.com/coder",
"script": "(function(){const t=document.querySelector('textarea#chat-input');if(!t)return console.error('Textarea not found');const e='[message]',n=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,'value').set;n.call(t,e);['input','change','keydown','keypress','keyup'].forEach(e=>{t.dispatchEvent(new Event(e,{bubbles:!0,cancelable:!0}))});t.dispatchEvent(new KeyboardEvent('keydown',{bubbles:!0,cancelable:!0,key:'Enter',keyCode:13,which:13}));setTimeout(()=>{const e=document.querySelector('div[role=\"button\"]');e?e.click():console.error('Send button not found')},500)})();",
"iniScript": "alert(0)"
},
{
"id": 1234046,
"name": "Deepseek",
"url": "https://chat.deepseek.com/",
"script": "(function(){const t=document.querySelector('textarea#chat-input');if(!t)return console.error('Textarea not found');const e='[message]',n=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,'value').set;n.call(t,e);['input','change','keydown','keypress','keyup'].forEach(e=>{t.dispatchEvent(new Event(e,{bubbles:!0,cancelable:!0}))});t.dispatchEvent(new KeyboardEvent('keydown',{bubbles:!0,cancelable:!0,key:'Enter',keyCode:13,which:13}));setTimeout(()=>{const e=document.querySelector('div[role=\"button\"]');e?e.click():console.error('Send button not found')},500)})();",
"iniScript": "alert(0)"
},
{
"id": 5,
"name": "HuggingChat",
"url": "https://huggingface.co/chat/",
"script": "(document.querySelector('textarea').value = '[message]', document.querySelector('textarea').dispatchEvent(new Event('input', {bubbles: true })), document.querySelector('textarea').dispatchEvent(new KeyboardEvent('keydown', {key: 'Enter' })))",
"iniScript": ""
},
{
"id": 6,
"name": "Perplexity",
"url": "https://www.perplexity.ai/",
"script": "(function(){let a=document.querySelector('textarea'),b=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;b.call(a,'[message]');let c=new Event('input',{bubbles:true});a.dispatchEvent(c);let d=new KeyboardEvent('keydown',{bubbles:true,key:'Enter',keyCode:13});a.dispatchEvent(d)})();",
"iniScript": ""
},
{
"id": 7,
"name": "YouAI",
"url": "https://you.com/",
"script": "(function(){const e=document.querySelector('textarea[aria-label=\"Query bar\"][data-testid=\"qbInput\"]'),t='[message]';if(!e)return console.error('Textarea not found');const n=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;n.call(e,t),e.dispatchEvent(new Event('input',{bubbles:!0})),setTimeout(()=>{e.dispatchEvent(new KeyboardEvent('keydown',{bubbles:!0,cancelable:!0,keyCode:13,key:'Enter',code:'Enter',shiftKey:!1}))},500)})();",
"iniScript": ""
},
{
"id": 8,
"name": "Coze",
"url": "https://www.coze.com/home",
"script": "(function(){var textarea=document.querySelector('.rc-textarea');if(!textarea){return console.error('Textarea not found');}var nativeInputValueSetter=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;nativeInputValueSetter.call(textarea,'[message]');var inputEvent=new Event('input',{bubbles:true});textarea.dispatchEvent(inputEvent);setTimeout(()=>{var enterEvent=new KeyboardEvent('keydown',{key:'Enter',code:'Enter',keyCode:13,which:13,bubbles:true,cancelable:true});textarea.dispatchEvent(enterEvent);},500);})();",
"iniScript": ""
},
{
"id": 9,
"name": "lmsys",
"url": "https://chat.lmsys.org/",
"script": "(function() { document.querySelectorAll('button.svelte-kqij2n').length >= 3 && document.querySelectorAll('button.svelte-kqij2n')[2].click(); document.querySelectorAll('.svelte-1ed2p3z').forEach(function(e) { e.style.display = 'none'; }); document.querySelectorAll('textarea[data-testid=\"textbox\"]').forEach(function(t) { t.value = '[message]'; t.dispatchEvent(new Event('input', { bubbles: true })); }); setTimeout(function() { [document.querySelector('#component-28'), document.querySelector('#component-65'), document.querySelector('#component-93')].forEach(function(b) { b && b.click(); }); }, 1000); })();",
"iniScript": ""
},
{
"id": 10,
"name": "Assistant",
"url": "https://poe.com/Assistant",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 11,
"name": "Poe-ChatGPT",
"url": "https://poe.com/ChatGPT",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 12,
"name": "Poe-Claude-3-Sonnet",
"url": "https://poe.com/Claude-3-Sonnet",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 13,
"name": "Poe-Claude-instant-100k",
"url": "https://poe.com/Claude-instant-100k",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 1022,
"name": "Poe-Llama-3-70B-T",
"url": "https://poe.com/Llama-3-70B-T",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 1023,
"name": "Poe-Llama-3-70b-Inst-FW",
"url": "https://poe.com/Llama-3-70b-Inst-FW",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 14,
"name": "Web-Search",
"url": "https://poe.com/Web-Search",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 15,
"name": "Gemini-Pro",
"url": "https://poe.com/Gemini-Pro",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 16,
"name": "Code Copilot Plus",
"url": "https://chatgpt.com/g/g-V9IaAM7A8-code-copilot-plus",
"script": "(function() { var textarea = document.querySelector('textarea'); textarea.value = '[message]'; textarea.dispatchEvent(new Event('input', {bubbles: true})); setTimeout(function() { var sendButton = document.querySelector('[data-testid=\"send-button\"]'); if (sendButton) sendButton.click(); }, 1000); })();",
"iniScript": "alert(0)"
},
{
"id": 17,
"name": "Poe-Qwen-通义千问",
"url": "https://poe.com/Qwen-72b-Chat",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 18,
"name": "together-gpt3.5",
"url": "https://api.together.xyz/playground/chat/openchat/openchat-3.5-1210",
"script": "(function simulateInputChangeAndEnter() { const input = document.querySelector('textarea[data-cy=\"input-textarea\"]'); const newValue = '[message]'; if (!input) { return console.error('Textarea not found'); } const nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype, \"value\").set; nativeInputValueSetter.call(input, newValue); const inputEvent = new Event('input', { bubbles: true }); input.dispatchEvent(inputEvent); setTimeout(() => { const keydownEvent = new KeyboardEvent('keydown', { bubbles: true, cancelable: true, keyCode: 13, key: 'Enter', code: 'Enter', shiftKey: false }); input.dispatchEvent(keydownEvent); }, 500); })();",
"iniScript": ""
},
{
"id": 19,
"name": "together-Llama",
"url": "https://api.together.xyz/playground/chat/meta-llama/Llama-2-70b-chat-hf",
"script": "(function simulateInputChangeAndEnter() { const input = document.querySelector('textarea[data-cy=\"input-textarea\"]'); const newValue = '[message]'; if (!input) { return console.error('Textarea not found'); } const nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype, \"value\").set; nativeInputValueSetter.call(input, newValue); const inputEvent = new Event('input', { bubbles: true }); input.dispatchEvent(inputEvent); setTimeout(() => { const keydownEvent = new KeyboardEvent('keydown', { bubbles: true, cancelable: true, keyCode: 13, key: 'Enter', code: 'Enter', shiftKey: false }); input.dispatchEvent(keydownEvent); }, 500); })();",
"iniScript": ""
},
{
"id": 20,
"name": "together-CodeLlama",
"url": "https://api.together.xyz/playground/chat/codellama/CodeLlama-70b-Instruct-hf",
"script": "(function simulateInputChangeAndEnter() { const input = document.querySelector('textarea[data-cy=\"input-textarea\"]'); const newValue = '[message]'; if (!input) { return console.error('Textarea not found'); } const nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype, \"value\").set; nativeInputValueSetter.call(input, newValue); const inputEvent = new Event('input', { bubbles: true }); input.dispatchEvent(inputEvent); setTimeout(() => { const keydownEvent = new KeyboardEvent('keydown', { bubbles: true, cancelable: true, keyCode: 13, key: 'Enter', code: 'Enter', shiftKey: false }); input.dispatchEvent(keydownEvent); }, 500); })();",
"iniScript": ""
},
{
"id": 21,
"name": "Gemini 1.5 pro",
"url": "https://aistudio.google.com/app/prompts/new_chat",
"script": "(function(){const e=document.querySelector('.ng-star-inserted.ng-touched'),t='[message]';if(!e)return console.error('input not found');e.value=t;const n=new Event('input',{bubbles:true});e.dispatchEvent(n);const o=new KeyboardEvent('keydown',{key:'Enter',bubbles:true}),c=new KeyboardEvent('keyup',{key:'Enter',bubbles:true});e.dispatchEvent(o);e.dispatchEvent(c);setTimeout(()=>{const e=document.querySelector('button[aria-label=\"Run\"]');if(e)e.click();setTimeout(()=>{e.value='';e.dispatchEvent(new Event('input',{bubbles:true}));},500);},500);})();",
"iniScript": ""
},
{
"id": 22,
"name": "xAI Grok",
"url": "https://poe.com/Grok-Beta",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 23,
"name": "AI Playground",
"url": "https://sdk.vercel.ai/",
"script": "(function(){const input=document.querySelector('textarea[placeholder=\"Send a message\"]'),newValue='[message]';if(!input){return console.error('Textarea not found');}const nativeInputValueSetter=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;nativeInputValueSetter.call(input,newValue);const inputEvent=new Event('input',{bubbles:true});input.dispatchEvent(inputEvent);setTimeout(()=>{const keydownEvent=new KeyboardEvent('keydown',{bubbles:true,cancelable:true,keyCode:13,key:'Enter',code:'Enter',shiftKey:false});input.dispatchEvent(keydownEvent);},500);})();",
"iniScript": ""
},
{
"id": 24,
"name": "Pi Ai",
"url": "https://pi.ai/talk",
"script": "(function(){const a=document.querySelector('textarea[placeholder=\"Talk with Pi\"]');if(!a){console.error('Textarea not found');return;}const b=\"[message]\",c=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;c.call(a,b);const d=new Event('input',{bubbles:true});a.dispatchEvent(d);setTimeout(()=>{const e=document.querySelector('button[aria-label=\"Submit text\"]');e?e.click():console.error('Send button not found');},500);})();",
"iniScript": ""
},
{
"id": 25,
"name": "devin ai",
"url": "https://preview.devin.ai/",
"script": "(function(){const a=document.querySelector('textarea[placeholder=\"Give Devin a task to work on ...\"]');if(!a){console.error('Textarea not found');return;}const b=\"This is a simulated message\",c=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;c.call(a,b);a.dispatchEvent(new Event('input',{bubbles:true}));setTimeout(()=>{a.dispatchEvent(new KeyboardEvent('keydown',{key:'Enter',bubbles:true}));},500);})();",
"iniScript": ""
},
{
"id": 26,
"name": "together-Qwen(通义千问)",
"url": "https://api.together.xyz/playground/chat/Qwen/Qwen1.5-72B-Chat",
"script": "(function simulateInputChangeAndEnter() { const input = document.querySelector('textarea[data-cy=\"input-textarea\"]'); const newValue = '[message]'; if (!input) { return console.error('Textarea not found'); } const nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype, \"value\").set; nativeInputValueSetter.call(input, newValue); const inputEvent = new Event('input', { bubbles: true }); input.dispatchEvent(inputEvent); setTimeout(() => { const keydownEvent = new KeyboardEvent('keydown', { bubbles: true, cancelable: true, keyCode: 13, key: 'Enter', code: 'Enter', shiftKey: false }); input.dispatchEvent(keydownEvent); }, 500); })();",
"iniScript": ""
},
{
"id": 27,
"name": "doubao(豆包)",
"url": "https://www.doubao.com/chat/",
"script": "(function(){ let a=document.querySelector('div#root textarea'),b=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,'value').set;b.call(a,'[message]');a.dispatchEvent(new Event('input',{ bubbles:true }));a.dispatchEvent(new KeyboardEvent('keydown',{ bubbles:true,key:'Enter',keyCode:13 })); })();",
"iniScript": ""
},
{
"id": 28,
"name": "chatglm(智谱清言)",
"url": "https://chatglm.cn/main/detail",
"script": "(function(){const e=document.querySelector('.input-box-inner textarea');e&&(e.value='[message]',e.dispatchEvent(new Event('input',{bubbles:!0}))),setTimeout(()=>{(document.querySelector('.enter img.enter_icon')||{}).click(),setTimeout(()=>{const e=document.querySelector('.input-box-inner textarea');e&&(e.value='',e.dispatchEvent(new Event('input',{bubbles:!0})))},500)},500)})();",
"iniScript": ""
},
{
"id": 29,
"name": "CharacterAI",
"url": "https://beta.character.ai/chats",
"script": "(function(){let a=document.querySelector('textarea'),b=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;b.call(a,'[message]');let c=new Event('input',{bubbles:true});a.dispatchEvent(c);let d=new KeyboardEvent('keydown',{bubbles:true,key:'Enter',keyCode:13});a.dispatchEvent(d);})();document.querySelector('.aspect-square.h-10').click();",
"iniScript": ""
},
{
"id": 30,
"name": "Mistral AI",
"url": "https://chat.mistral.ai/chat",
"script": "(function(){var textarea=document.querySelector('textarea.flex.w-full');if(!textarea){return console.error('Textarea not found');}textarea.value='[message]';textarea.dispatchEvent(new Event('input',{bubbles:true}));setTimeout(function(){textarea.dispatchEvent(new KeyboardEvent('keydown',{key:'Enter',code:'Enter',keyCode:13,which:13,bubbles:true,cancelable:true}));},500);})();",
"iniScript": ""
},
{
"id": 31,
"name": "Poe-Photo_CreateE(Image)",
"url": "https://poe.com/Photo_CreateE",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 32,
"name": "Poe-Image_Creators(Image)",
"url": "https://poe.com/Image_Creators",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 33,
"name": "Poe-StableDiffusionXL(Image)",
"url": "https://poe.com/StableDiffusionXL",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 34,
"name": "Poe-Playground(Image)",
"url": "https://poe.com/Playground-v2.5",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 35,
"name": "Poe-Photo-Realism(Image)",
"url": "https://poe.com/Photo-Realism",
"script": "((textarea = document.querySelector('textarea'), lastValue = textarea.value, textarea.value = '[message]', inputEvent = new Event('input', {bubbles: true }), inputEvent.simulated = true, tracker = textarea._valueTracker, tracker ? tracker.setValue(lastValue) : void 0, textarea.dispatchEvent(inputEvent), enterKeyEvent = new KeyboardEvent('keydown', {key: 'Enter', code: 'Enter', keyCode: 13, which: 13, bubbles: true, cancelable: true }), textarea.dispatchEvent(enterKeyEvent)));",
"iniScript": ""
},
{
"id": 36,
"name": "Meta image(Image)",
"url": "https://imagine.meta.com/",
"script": "(function() { let textarea = document.querySelector('textarea'); let nativeInputValueSetter = Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype, \"value\").set; nativeInputValueSetter.call(textarea, '[message]'); let inputEvent = new Event('input', { bubbles: true }); textarea.dispatchEvent(inputEvent); let enterEvent = new KeyboardEvent('keydown', { bubbles: true, key: 'Enter', keyCode: 13 }); textarea.dispatchEvent(enterEvent); })();",
"iniScript": ""
},
{
"id": 37,
"name": "playground.ai(Image)",
"url": "https://ui.playground.ai/",
"script": "(function(){const textArea=Array.from(document.querySelectorAll('textarea')).find(el=>el.placeholder===\"Type a message...\");if(!textArea){console.error('Textarea not found');return;}const message='[message]';const nativeInputValueSetter=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;nativeInputValueSetter.call(textArea,message);const inputEvent=new Event('input',{bubbles:true});textArea.dispatchEvent(inputEvent);const sendButton=document.querySelector('.search-btn');if(!sendButton){console.error('Send button not found');return;}setTimeout(()=>{sendButton.click();},500);})();",
"iniScript": ""
},
{
"id": 38,
"name": "Suno(Music)",
"url": "https://app.suno.ai/create/",
"script": "(function(){const t=document.querySelector('.chakra-textarea.css-pljwwf'),e='[message]';if(!t)return console.error('Textarea not found');const n=Object.getOwnPropertyDescriptor(window.HTMLTextAreaElement.prototype,\"value\").set;n.call(t,e);const o=new Event('input',{bubbles:!0});t.dispatchEvent(o),setTimeout(()=>{const e=new KeyboardEvent('keydown',{bubbles:!0,cancelable:!0,keyCode:13,key:'Enter',code:'Enter',shiftKey:!1});t.dispatchEvent(e)},500)})();",
"iniScript": ""
},
{
"id": 39,
"name": "Suno AI V3 Lyrics Plus",
"url": "https://chatgpt.com/g/g-jO85wxiFg-suno-ai-v3-lyrics-plus",
"script": "(function() { var textarea = document.querySelector('textarea'); textarea.value = '[message]'; textarea.dispatchEvent(new Event('input', {bubbles: true})); setTimeout(function() { var sendButton = document.querySelector('[data-testid=\"send-button\"]'); if (sendButton) sendButton.click(); }, 1000); })();",
"iniScript": "alert(0)"
},
{
"id": 40,
"name": "文心一言",
"url": "https://yiyan.baidu.com/",
"script": "(function(){var e=document.querySelector('.yc-editor');if(!e){return console.error('Editable div not found');}e.focus();document.execCommand('insertText',false,'[message]');['keydown','keypress','input','keyup'].forEach(function(t){var n=new Event(t,{bubbles:true,cancelable:true});if(t==='keydown'||t==='keypress'||t==='keyup'){n.key='Enter';n.code='Enter';n.keyCode=13;}e.dispatchEvent(n);});setTimeout(function(){e.dispatchEvent(new KeyboardEvent('keydown',{key:'Enter',code:'Enter',keyCode:13,bubbles:true,cancelable:true}));},500);})();",
"iniScript": ""
},
{
"id": 41,
"name": "Kimi Chat",
"url": "https://kimi.moonshot.cn/",
"script": "(function(){const editor=document.querySelector('[data-testid=\"msh-chatinput-editor\"]');const message='[message]';if(!editor){return console.error('Editor not found');}const insertText=(text)=>{const textEvent=new InputEvent('beforeinput',{data:text,bubbles:true,cancelable:true,inputType:'insertText'});editor.dispatchEvent(textEvent);};insertText(message);setTimeout(()=>{const enterEvent=new KeyboardEvent('keydown',{bubbles:true,cancelable:true,keyCode:13,key:'Enter',code:'Enter',shiftKey:false});editor.dispatchEvent(enterEvent);},500);})();",
"iniScript": "alert(0)"
}
],
"CurrentAi": [
{ "id": 1 },
{ "id": 2 }
],
"Prompts": [
{
"id": 1,
"title": "English Translator and Improver",
"prompt": "I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved version of my text, in English. I want you to replace my simplified A0-level words and sentences with more beautiful and elegant, upper level English words and sentences. Keep the meaning same, but make them more literary. I want you to only reply the correction, the improvements and nothing else, do not write explanations. My first sentence is \n"
},
{
"id": 2,
"title": "position Interviewer",
"prompt": "I want you to act as an interviewer. I will be the candidate and you will ask me the interview questions for the position position. I want you to only reply as the interviewer. Do not write all the conservation at once. I want you to only do the interview with me. Ask me the questions and wait for my answers. Do not write explanations. Ask me the questions one by one like an interviewer does and wait for my answers. My first sentence is \n"
},
{
"id": 3,
"title": "Excel Sheet",
"prompt": "I want you to act as a text based excel. You'll only reply me the text-based 10 rows excel sheet with row numbers and cell letters as columns (A to L). First column header should be empty to reference row number. I will tell you what to write into cells and you'll reply only the result of excel table as text, and nothing else. Do not write explanations. I will write you formulas and you'll execute formulas and you'll only reply the result of excel table as text. First, reply me the empty sheet.\n"
},
{
"id": 4,
"title": "Spoken English Teacher",
"prompt": "I want you to act as a spoken English teacher and improver. I will speak to you in English and you will reply to me in English to practice my spoken English. I want you to keep your reply neat, limiting the reply to 100 words. I want you to strictly correct my grammar mistakes, typos, and factual errors. I want you to ask me a question in your reply. Now let's start practicing, you could ask me a question first. Remember, I want you to strictly correct my grammar mistakes, typos, and factual errors.\n"
},
{
"id": 5,
"title": "Plagiarism Checker",
"prompt": "I want you to act as a plagiarism checker. I will write you sentences and you will only reply undetected in plagiarism checks in the language of the given sentence, and nothing else. Do not write explanations on replies. My first sentence is \n"
},
{
"id": 6,
"title": "Character from 'Movie/Book/Anything",
"prompt": "I want you to act like {character} from {series}. I want you to respond and answer like {character} using the tone, manner and vocabulary {character} would use. Do not write any explanations. Only answer like {character}. You must know all of the knowledge of {character}. My first sentence is \n"
},
{
"id": 7,
"title": "Advertiser",
"prompt": "I want you to act as an advertiser. You will create a campaign to promote a product or service of your choice. You will choose a target audience, develop key messages and slogans, select the media channels for promotion, and decide on any additional activities needed to reach your goals. My first suggestion request is \n"
},
{
"id": 8,
"title": "Storyteller",
"prompt": "I want you to act as a storyteller. You will come up with entertaining stories that are engaging, imaginative and captivating for the audience. It can be fairy tales, educational stories or any other type of stories which has the potential to capture people's attention and imagination. Depending on the target audience, you may choose specific themes or topics for your storytelling session e.g., if it’s children then you can talk about animals; If it’s adults then history-based tales might engage them better etc. My first request is \n"
},
{
"id": 9,
"title": "Motivational Coach",
"prompt": "I want you to act as a motivational coach. I will provide you with some information about someone's goals and challenges, and it will be your job to come up with strategies that can help this person achieve their goals. This could involve providing positive affirmations, giving helpful advice or suggesting activities they can do to reach their end goal. My first request is \n"
},
{
"id": 10,
"title": "Composer",
"prompt": "I want you to act as a composer. I will provide the lyrics to a song and you will create music for it. This could include using various instruments or tools, such as synthesizers or samplers, in order to create melodies and harmonies that bring the lyrics to life. My first request is \n"
},
{
"id": 11,
"title": "Screenwriter",
"prompt": "I want you to act as a screenwriter. You will develop an engaging and creative script for either a feature length film, or a Web Series that can captivate its viewers. Start with coming up with interesting characters, the setting of the story, dialogues between the characters etc. Once your character development is complete - create an exciting storyline filled with twists and turns that keeps the viewers in suspense until the end. My first request is \n"
},
{
"id": 12,
"title": "Novelist",
"prompt": "I want you to act as a novelist. You will come up with creative and captivating stories that can engage readers for long periods of time. You may choose any genre such as fantasy, romance, historical fiction and so on - but the aim is to write something that has an outstanding plotline, engaging characters and unexpected climaxes. My first request is \n"
},
{
"id": 13,
"title": "Movie Critic",
"prompt": "I want you to act as a movie critic. You will develop an engaging and creative movie review. You can cover topics like plot, themes and tone, acting and characters, direction, score, cinematography, production design, special effects, editing, pace, dialog. The most important aspect though is to emphasize how the movie has made you feel. What has really resonated with you. You can also be critical about the movie. Please avoid spoilers. My first request is \n"
},
{
"id": 14,
"title": "AI Writing Tutor",
"prompt": "I want you to act as an AI writing tutor. I will provide you with a student who needs help improving their writing and your task is to use artificial intelligence tools, such as natural language processing, to give the student feedback on how they can improve their composition. You should also use your rhetorical knowledge and experience about effective writing techniques in order to suggest ways that the student can better express their thoughts and ideas in written form. My first request is \n"
},
{
"id": 15,
"title": "Second Example Title",
"prompt": "Second Example Prompt Text"
},
{
"id": 16,
"title": "UX/UI Developer",
"prompt": "I want you to act as a UX/UI developer. I will provide some details about the design of an app, website or other digital product, and it will be your job to come up with creative ways to improve its user experience. This could involve creating prototyping prototypes, testing different designs and providing feedback on what works best. My first request is \n"
},
{
"id": 17,
"title": "Cyber Security Specialist",
"prompt": "I want you to act as a cyber security specialist. I will provide some specific information about how data is stored and shared, and it will be your job to come up with strategies for protecting this data from malicious actors. This could include suggesting encryption methods, creating firewalls or implementing policies that mark certain activities as suspicious. My first request is \n"
},
{
"id": 18,
"title": "Career Counselor",
"prompt": "I want you to act as a career counselor. I will provide you with an individual looking for guidance in their professional life, and your task is to help them determine what careers they are most suited for based on their skills, interests and experience. You should also conduct research into the various options available, explain the job market trends in different industries and advice on which qualifications would be beneficial for pursuing particular fields. My first request is \n"
},
{
"id": 19,
"title": "Design Consultant",
"prompt": "I want you to act as a web design consultant. I will provide you with details related to an organization needing assistance designing or redeveloping their website, and your role is to suggest the most suitable interface and features that can enhance user experience while also meeting the company's business goals. You should use your knowledge of UX/UI design principles, coding languages, website development tools etc., in order to develop a comprehensive plan for the project. My first request is \n"
},
{
"id": 20,
"title": "Financial Analyst",
"prompt": "Want assistance provided by qualified individuals enabled with experience on understanding charts using technical analysis tools while interpreting macroeconomic environment prevailing across world consequently assisting customers acquire long term advantages requires clear verdicts therefore seeking same through informed predictions written down precisely! First statement contains following content \n"
}
],
"ViewsCount": {
"VCount": 2
}
}