Chrome extension that removes "Dive deeper in AI Mode" buttons from Google search results while preserving "Show more" functionality.
- Open Chrome and navigate to
chrome://extensions/ - Enable "Developer mode" (toggle in top-right corner)
- Click "Load unpacked"
- Select the
google-search-cleanerfolder - Done - the extension is now active
- Monitors Google search pages for AI Mode buttons
- Removes them automatically as they appear
- Uses MutationObserver to handle dynamically loaded content
- Preserves all other functionality including "Show more" buttons
manifest.json- Extension configurationcontent.js- Main logic that removes AI buttonsicon16.png,icon48.png,icon128.png- Extension icons
- Search for anything on Google
- Look for AI Overview sections
- The "Dive deeper in AI Mode" buttons should be automatically removed
- "Show more" buttons should still work normally
Open Chrome DevTools (F12) and check the Console tab. You'll see:
[Google Search Cleaner] Extension loaded and monitoringon page load[Google Search Cleaner] Removed X AI Mode element(s)when elements are removed
To block additional phrases, edit BLOCKED_PHRASES array in content.js:
const BLOCKED_PHRASES = [
'dive deeper in ai mode',
'your custom phrase here'
];- Go to
chrome://extensions/ - Find "Google Search Cleaner"
- Click "Remove"