Image Downloader
Download any image on your website page in one click!
Co to jest Image Downloader?
Image Downloader to rozszerzenie Chrome opracowane przez tiffanycheck.check, a jego główną funkcją jest „Download any image on your website page in one click!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Image Downloader
Pobierz pliki rozszerzeń Image Downloader 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
The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fnelomgkbbanddlflhgphgkijfeoehfb |
Oficjalny URL | https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb |
Opis | Download any image on your website page in one click! |
Rozmiar pliku | 19.54 KB |
Liczba instalacji | 3,519 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2022-12-05 |
Data Publikacji | 2022-11-28 |
Deweloper | tiffanycheck.check |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://home.xcxologyda.xyz/ |
Adres URL Strony Pomocy | https://home.xcxologyda.xyz/contact.html |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Image Downloader", "default_popup": "popup.html" }, "description": "Download any image on your website page in one click!", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Image Downloader", "version": "1.1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "icons\/*.svg" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |