Google Search “View Image” Button for Chrome — Restore It NowIn 2018 Google removed the “View Image” button from Google Images after a settlement with Getty Images. The change broke a habit many people had: with one click they used to open the full-resolution image in a separate tab. Since then users have had to open the image preview, then right-click or use the “Open image in new tab” option, or visit the source page to get the original. If you want the old one-click “View Image” behavior back in Chrome, there are several safe, practical options — extensions, bookmarklets, and simple workflow tweaks — which this article walks through in detail.
Why the “View Image” button mattered
The original “View Image” button was convenient because it:
- Opened the full image directly in a new tab, skipping the preview panel.
- Saved time for designers, researchers, students, and anyone collecting images.
- Made it simpler to access high-resolution files and direct image URLs.
Its removal was intended to reduce straightforward image downloading and encourage visits to source pages (better for publishers). For many users, though, the removal introduced friction without providing a practical alternative.
Options to restore or mimic the button in Chrome
Below are the primary approaches, ranked by simplicity and fidelity to the original behavior.
- Chrome extensions (best fidelity)
- Bookmarklet (lightweight, no install)
- Manual workflow shortcuts (no extensions)
Each approach has trade-offs around convenience, privacy, and permissions. The table compares them at a glance.
Method | Ease of use | Restores original behavior? | Privacy/Permissions |
---|---|---|---|
Chrome extension | Very easy — one click | Yes (often identical) | Requires extension permissions (may read images/webpage) |
Bookmarklet | Easy — small script saved as bookmark | Mostly (depends on implementation) | No extra permissions beyond browsing |
Manual workflow | No install | No (extra clicks) | Best privacy (no extra code) |
Recommended Chrome extensions
Several reputable extensions restore a “View Image”-like button. When choosing one, check reviews, update history, and required permissions. Popular options include:
- Extensions that explicitly restore “View Image” — these add a visible button next to the image in the Google Images UI and usually replicate the old behavior exactly.
- Extensions that add a right-click menu item or keyboard shortcut to open the image directly.
How to install:
- Open Chrome and go to the Chrome Web Store.
- Search for “View Image” or “Google Images Restore”.
- Inspect ratings, number of users, and developer info.
- Click Add to Chrome → Add extension.
- Test by searching an image and confirming a new button appears next to images or in the preview.
Security note: only install extensions from reputable authors. If an extension’s permissions include “Read and change all your data on the websites you visit,” that’s necessary for it to interact with Google Images, but prefer extensions with transparent source code or many positive reviews.
Bookmarklet — quick and privacy-friendly
A bookmarklet is a small JavaScript snippet saved as a bookmark. It’s a lightweight way to open the full image without installing an extension.
Example bookmarklet (how to add):
- Create a new bookmark in Chrome.
- Set the name to “View Image”.
- In the URL field paste a JavaScript snippet like this (wrapped into one line):
javascript:(function(){let imgs=document.querySelectorAll('img'); if(location.hostname.includes('google') && location.pathname.includes('/imgres')){let u=new URL(location.href); let imgurl=u.searchParams.get('imgurl'); if(imgurl) window.open(imgurl,'_blank'); else alert('No image URL found.');} else {let el=document.querySelector('.v1Nh3.kIKUG._bz0w'); try{let active=document.querySelector('img.n3VNCb'); if(active) window.open(active.src,'_blank'); else alert('No active image found.');}catch(e){alert('Cannot find image.');}}})();
Usage:
- On an open Google Images result or preview, click the bookmarklet to open the underlying image in a new tab.
Limitations:
- Google’s DOM can change; bookmarklets may need occasional updates.
- Bookmarklets run within the page context and can be blocked by some sites.
Manual shortcuts and tips
If you prefer not to install or run scripts, use these built-in methods:
- Right-click the image preview and choose “Open image in new tab.”
- Click the image to open the side preview, then click the three-dot menu in the preview and choose “Open image in new tab.”
- Use keyboard: after clicking an image, press Ctrl+L then Ctrl+C to copy the URL from the address bar (works when the image is opened directly).
These methods are reliable and require no additional tools, but they require more clicks.
Privacy and safety considerations
- Extensions need permissions to modify Google Images pages; that’s how they work. Only install extensions with clear privacy policies and many users.
- Bookmarklets run only when you click them and don’t require installation, offering better privacy.
- Avoid downloading images from untrusted sources. If you need images for commercial use, check licensing on the source site.
Troubleshooting
- If an extension doesn’t show a button, try disabling other extensions that modify pages or open Chrome’s DevTools to check console errors.
- If a bookmarklet stops working after a Google update, re-check the snippet or look for updated bookmarklet code from trustworthy sources.
- If images open as low-resolution thumbnails, open the page they came from and look for the full-resolution file or a download link from the host site.
Final recommendation
For most users who want the original one-click behavior, a well-reviewed Chrome extension is the most convenient and faithful solution. If you prioritize privacy and minimal permissions, use a bookmarklet and update it if Google’s layout changes. If you prefer no extras at all, the built-in right-click/open-image workflow still works reliably.
Restore the “View Image” functionality using the approach that best matches your security comfort and convenience needs — extension for convenience, bookmarklet for lightweight privacy, manual method for zero installs.