Skip to content

Instantly share code, notes, and snippets.

@amaider
amaider / ChatGPT Bookmark
Created July 14, 2024 09:15
ChatGPT Bookmark to open chatgpt.com and expands the chatboxes on document.click and every 10 secs
javascript: (
function () {
if (!window.location.href.includes('https://chatgpt.com/')) {
window.open('https://chatgpt.com/');
}
document.onclick = expandChatbox;
setInterval(expandChatbox, 10000);