Skip to content

Commit f017fef

Browse files
committed
Added xAI
1 parent dee39f0 commit f017fef

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

grok/content.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ function getTextarea() {
66
const selectors = [
77
'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',
88
'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"]'
1012
];
1113

1214
for (const selector of selectors) {
@@ -60,7 +62,6 @@ function setupInputObserver() {
6062
function handleEnterKey(event) {
6163
if (event.key === "Enter" && !event.shiftKey && !event.isComposing) {
6264
const textarea = getTextarea();
63-
console.log(textarea);
6465
if (textarea && document.activeElement === textarea) {
6566
const capturedText = textarea.value.trim();
6667

@@ -218,7 +219,9 @@ function clickSendButtonWithDelay() {
218219
setTimeout(() => {
219220
const selectors = [
220221
'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"]'
222225
];
223226

224227
let sendButton = null;

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"js": ["mem0/content.js"]
4040
},
4141
{
42-
"matches": ["https://grok.com/*"],
42+
"matches": ["https://grok.com/*", "https://x.com/i/grok/*"],
4343
"js": ["grok/content.js"]
4444
},
4545
{

0 commit comments

Comments
 (0)