Image Finder

Find images to save

Cos'è Image Finder?

Image Finder è un'estensione di Chrome sviluppata da https://anadev.com.br, e la sua funzione principale è "Find images to save".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Image Finder

Scarica i file di estensione Image Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Image Finder Image Finder
ID nejmjohiggmikmmhagccbogaohhbicjc
URL Ufficiale https://chromewebstore.google.com/detail/image-finder/nejmjohiggmikmmhagccbogaohhbicjc
Descrizione Find images to save
Dimensione del File 19 KB
Conteggio Installazioni 246
Versione Corrente 0.1
Ultimo Aggiornamento 2021-03-23
Data di Pubblicazione 2021-03-22
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://anadev.com.br
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}