Image Finder
Find images to save
What is Image Finder?
Image Finder is a Chrome extension developed by https://anadev.com.br, and its main feature is "Find images to save".
Extension Screenshots
Download Image Finder Extension CRX File
Download Image Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension scrapes the current web page and lists all images found, on tags or even elements with background-image. - references: https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/examples/page-redder https://blog.crimx.com/2017/03/09/get-all-images-in-dom-including-background-en/ - extension icon: made by Freepik from www.flaticon.com
Extension Basic Information
Name | Image Finder |
ID | nejmjohiggmikmmhagccbogaohhbicjc |
Official URL | https://chromewebstore.google.com/detail/image-finder/nejmjohiggmikmmhagccbogaohhbicjc |
Description | Find images to save |
File Size | 19 KB |
Installation Count | 246 |
Current Version | 0.1 |
Last Updated | 2021-03-23 |
Publish Date | 2021-03-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://anadev.com.br |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image Finder", "action": [], "manifest_version": 3, "version": "0.1", "description": "Find images to save", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "finder.js" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |