How to Disable Image Hover Tooltips in Google Chrome
Many users find browser tooltips helpful, but at times, these pop-up messages can become intrusive, especially when they appear repeatedly over images in Chrome. If you’re experiencing unwanted image hover tooltips in Chrome despite disabling infotips in your operating system’s registry editor and adjusting mouse hover duration settings, you may be looking for additional remedies to silence these pop-ups.
This article provides a comprehensive guide to help you disable or reduce image tooltip pop-ups in Google Chrome, ensuring a smoother browsing experience.
Understanding Chrome’s Tooltip Behavior
Chrome’s tooltips over images are often derived from the title
attribute embedded within HTML tags. When you hover over an image that contains a title
attribute, the browser displays a tooltip with that text. Since these are controlled by the webpage’s code, browser settings alone may not fully prevent their appearance.
Additionally, certain Chrome features or extensions can influence tooltip behavior, making it essential to explore multiple solutions.
Common Strategies to Disable Image Tooltips
1. Removing or Modifying the title
Attributes on Webpages
Since tooltips are generated from the title
attribute, if you have control over the webpage’s code or can use extensions, you can remove or suppress these attributes:
- Using Developer Tools:
- Right-click on an image and choose Inspect.
- Locate the
title
attribute within the image’s HTML. -
Delete or modify it to prevent the tooltip from appearing.
-
Using Custom JavaScript:
- Inject JavaScript that removes all
title
attributes from images:
javascript
document.querySelectorAll('img[title]').forEach(img => img.removeAttribute('title')); - This can be done via browser extensions like Tampermonkey.
2. Installing Extensions to Suppress Tooltips
Extensions can be a practical way to prevent unwanted tooltips:
- No Tooltip Extensions: Search for Chrome extensions designed to disable or suppress tooltips.
- Custom Scripts: Use extensions such as Tampermonkey or Greasemonkey to run user scripts that remove
title
attributes from images automatically.
3. Masking or Overriding Tooltip Behavior in Chrome
While Chrome doesn’t offer a built-in setting to disable image tooltips, some advanced users employ user stylesheets or scripts to hide them:
- Using CSS to Hide Tooltips:
–
Share this content: