Single floating button opens image gallery. Click Copyseeker or Yandex icon on each tile to search. Middle-click opens image in new tab. Double-click button to hide temporarily. Supports clipboard images and drag-drop onto button.
See screenshot at the bottom
The ultimate reverse image search toolbox. Instantly extract all images from any page (including high-res originals) or paste from clipboard, then reverse search with one click on Copyseeker or Yandex.
Reverse image searching is usually a multi-step friction nightmare:
This script solves all of that. It digs out the real image sources and handles the upload process for you.
A tiny, unobtrusive button that acts as your portal.
| Action | Result |
|---|---|
| Single Click | Opens the full-screen Image Picker gallery |
| Drag & Drop | Drop an image file (or URL) onto the button to add it to the gallery |
| Double-Click | Temporarily hide the button for 5 seconds (great for screenshots) |
A clean grid view of every image detected on the page.
<img>, <picture>, CSS background-image, SVGs, and Video posters.Each image tile has icons for one-click reverse searching.
| Zone | Left-Click Action | Middle-Click Action |
|---|---|---|
| Main Image | Open image in new tab | Open in background tab |
| Copyseeker Icon | Search on Copyseeker.net | Search silently (background) |
| Yandex Icon | Search on Yandex Images | Search silently (background) |
Most reverse search tools fail with "Base64" images (images embedded directly in code) or clipboard content.
Found an image in another tab? Have a file on your desktop?
Ctrl+V if gallery is open).GM_openInTab: To open search results.GM_setValue/GM_getValue: To pass data to search engines for auto-filling.You can customize the button's behavior by editing the CONFIG object at the top of the script:
const CONFIG = {
button: {
size: 24, // Button size in px
position: {
vertical: 'bottom', // 'top' or 'bottom'
horizontal: 'left', // 'left' or 'right'
offsetX: 1,
offsetY: 1
},
opacity: {
default: 0.15, // Idle opacity
hover: 1 // Hover opacity
}
},
timing: {
doubleClickThreshold: 350, // Max ms for double-click
hideTemporarilyDuration: 5000 // How long to hide on double-click
}
};
Q: Why is the Copyseeker icon crossed out?
A: The image is likely a "Base64" data URL (not a real link). Copyseeker.net cannot process these. Use the Yandex icon instead; the script will auto-upload the image data for you.
Q: Can I search multiple images at once?
A: Middle-click the icons. This opens searches in background tabs, letting you queue up multiple searches rapidly.
Q: The button blocks page content.
A: Double-click it to hide it for 5 seconds.
Q: Does this work on sites like Instagram?
A: Yes. The script uses robust event tracking to handle complex sites with virtual DOMs or aggressive overlay layers.