// ==UserScript==
// @name New gemini Chat shortcut
// @namespace vndmp4
// @match https://gemini.google.com/*
// @grant none
// ==/UserScript==
(function () {
"use strict";
// Replace this with the actual selector for your new chat element
const newChatButtonSelector = ".expandable-button";
document.addEventListener("keydown", event => {
if (event.key === "`") {
event.preventDefault();
const newChatButton = document.querySelector(newChatButtonSelector);
if (newChatButton) {
newChatButton.click();
const chatBox = document.querySelector(".ql-editor");
if (chatBox) {
chatBox.focus();
}
}
}
});
})();
New gemini Chat shortcut
Posted on:July 28, 2024 at 04:06 AM