Image Finder

Find images to save

Co je Image Finder?

Image Finder je rozšíření Chrome vyvinuté https://anadev.com.br, a jeho hlavní funkcí je „Find images to save“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Image Finder

Stáhněte si soubory rozšíření Image Finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Image Finder Image Finder
ID nejmjohiggmikmmhagccbogaohhbicjc
Oficiální URL https://chromewebstore.google.com/detail/image-finder/nejmjohiggmikmmhagccbogaohhbicjc
Popis Find images to save
Velikost souboru 19 KB
Počet instalací 246
Aktuální Verze 0.1
Poslední Aktualizace 2021-03-23
Datum Vydání 2021-03-22
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://anadev.com.br
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}