Image Finder
Find images to save
Co to jest Image Finder?
Image Finder to rozszerzenie Chrome opracowane przez https://anadev.com.br, a jego główną funkcją jest „Find images to save”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Image Finder
Pobierz pliki rozszerzeń Image Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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
 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                     Podstawowe informacje o rozszerzeniu
| Nazwa |  | 
| ID | nejmjohiggmikmmhagccbogaohhbicjc | 
| Oficjalny URL | https://chromewebstore.google.com/detail/image-finder/nejmjohiggmikmmhagccbogaohhbicjc | 
| Opis | Find images to save | 
| Rozmiar pliku | 19 KB | 
| Liczba instalacji | 246 | 
| Aktualna Wersja | 0.1 | 
| Ostatnia Aktualizacja | 2021-03-23 | 
| Data Publikacji | 2021-03-22 | 
| Ocena | 5.00/5 Łącznie 1 Oceny | 
| Deweloper | https://anadev.com.br | 
| [email protected] | |
| Typ Płatności | free | 
| Obsługiwane Języki | 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"
    }
} | |