Chrome Extension | |
Version: | 1.502 |
Requirements: | Google Chrome 88.0.4324 or later |
Mozilla Firefox Extension | |
Version: | 1.499 |
Requirements: | Mozilla Firefox 45.0 or later |
Microsoft Edge Extension | |
Version: | 1.502 |
Requirements: | Microsoft Edge 88.0.705 or later |
Google Chrome Screenshot
Heavy reverse image search user? This free extension adds a simple "Research Image" option to the right-click context menu of Web images. Researching an image will automatically retrieve reverse image search results from your choice of Google Images, TinEye, Yandex, Bing, or a combination. Results are loaded into new tabs. You can use the data to find out who is using your own images, or help narrow down the subject matter of an image you found.
Support E-mail: info [ at ] usacyborg.com
From version 1.49 you can call searches from your own code using JavaScript message events. The API must first be enabled in the extension settings page. Example that searches any image on the page when user clicks:
var nodes = document.getElementsByTagName('IMG');
var nodeCount = nodes.length;
for (var i = 0; i < nodeCount; i++) {
var node = nodes[i];
node.addEventListener('click', function(event) {
window.postMessage({source: "fast-image-research-request", payload: {url: event.target.src}}, '*');
});
};