@@ -6,7 +6,9 @@ function getTextarea() {
6
6
const selectors = [
7
7
'textarea.w-full.px-2.\\@\\[480px\\]\\/input\\:px-3.bg-transparent.focus\\:outline-none.text-primary.align-bottom.min-h-14.pt-5.my-0.mb-5' ,
8
8
'textarea.w-full.px-2.\\@\\[480px\\]\\/input\\:px-3.pt-5.mb-5.bg-transparent.focus\\:outline-none.text-primary.align-bottom' ,
9
- 'textarea[placeholder="Ask follow-up"]'
9
+ 'textarea[dir="auto"][spellcheck="false"][placeholder="Ask anything"]' ,
10
+ 'textarea[dir="auto"][spellcheck="false"][placeholder="Ask follow-up"]' ,
11
+ 'textarea[dir="auto"][spellcheck="false"]'
10
12
] ;
11
13
12
14
for ( const selector of selectors ) {
@@ -60,7 +62,6 @@ function setupInputObserver() {
60
62
function handleEnterKey ( event ) {
61
63
if ( event . key === "Enter" && ! event . shiftKey && ! event . isComposing ) {
62
64
const textarea = getTextarea ( ) ;
63
- console . log ( textarea ) ;
64
65
if ( textarea && document . activeElement === textarea ) {
65
66
const capturedText = textarea . value . trim ( ) ;
66
67
@@ -218,7 +219,9 @@ function clickSendButtonWithDelay() {
218
219
setTimeout ( ( ) => {
219
220
const selectors = [
220
221
'button.group.flex.flex-col.justify-center.rounded-full[type="submit"]' ,
221
- 'button.group.flex.flex-col.justify-center.rounded-full.focus\\:outline-none.focus-visible\\:outline-none[type="submit"]'
222
+ 'button.group.flex.flex-col.justify-center.rounded-full.focus\\:outline-none.focus-visible\\:outline-none[type="submit"]' ,
223
+ 'button[type="submit"]:not([aria-label="Submit attachment"])' ,
224
+ 'button[aria-label="Grok something"][role="button"]'
222
225
] ;
223
226
224
227
let sendButton = null ;
0 commit comments