a better placement for search, ‘deep research’ and ‘create image’ would be in the sidebar/side panel or make it so that you can disable the tooltips that pops up and covers the text field when you (accidently) hover over those buttons
TamperMonkey script that will simply hide the buttons.
The only one that really matters is deep research, so you can temporarily disable the script for your 10 or so per month. Others, you basically talk to the AI and get the same thing for canvas, search, and image creation.
// ==UserScript==
// @name ChatGPT No Message Buttons
// @version 2025.05.03
// @description Hide specific system hint elements on chatgpt.com
// @match https://chatgpt.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const customCss = `
/* Hide elements by data-testid attribute */
div[data-testid="system-hint-search"],
div[data-testid="system-hint-research"],
div[data-testid="system-hint-picture_v2"],
div[data-testid="composer-action-system-hint-button"] {
display: none !important;
}
`;
const styleElement = document.createElement('style');
styleElement.textContent = customCss;
document.head.appendChild(styleElement);
})();
1 Like